autosuspend: 10.1.0 -> 11.3.0 (#537809)

This commit is contained in:
Adam C. Stephens
2026-07-02 21:12:04 +00:00
committed by GitHub
2 changed files with 8 additions and 4 deletions
+5 -2
View File
@@ -240,12 +240,15 @@ in
after = [ "network.target" ];
path = flatten (attrValues (filterAttrs (n: _: hasCheck n) dependenciesForChecks));
serviceConfig = {
ExecStart = "${autosuspend}/bin/autosuspend -l ${autosuspend}/etc/autosuspend-logging.conf -c ${autosuspend-conf} daemon";
ExecStart = "${autosuspend}/bin/autosuspend --logging ${autosuspend}/etc/autosuspend-logging.conf daemon --config ${autosuspend-conf}";
};
};
};
meta = {
maintainers = with maintainers; [ xlambein ];
maintainers = with maintainers; [
xlambein
adamcstephens
];
};
}
+3 -2
View File
@@ -11,7 +11,7 @@
python3.pkgs.buildPythonApplication (finalAttrs: {
pname = "autosuspend";
version = "10.1.0";
version = "11.3.0";
pyproject = true;
outputs = [
@@ -24,7 +24,7 @@ python3.pkgs.buildPythonApplication (finalAttrs: {
owner = "languitar";
repo = "autosuspend";
tag = "v${finalAttrs.version}";
hash = "sha256-4mByuJ75hd5TEoKxVglAHlYXZSlbAldMwnIianSw8O4=";
hash = "sha256-KG1Cv3Fmdf3VDdZR+k0SeA97g6R+oI6+NgtaWHWPVUQ=";
};
postPatch = ''
@@ -100,6 +100,7 @@ python3.pkgs.buildPythonApplication (finalAttrs: {
maintainers = with lib.maintainers; [
bzizou
anthonyroussel
adamcstephens
];
mainProgram = "autosuspend";
platforms = lib.platforms.linux;