system-manager: 1.0.0 -> 1.1.0 (#499246)

This commit is contained in:
Félix
2026-03-12 15:16:58 +00:00
committed by GitHub
+7 -4
View File
@@ -12,16 +12,16 @@
rustPlatform.buildRustPackage (finalAttrs: {
pname = "system-manager";
version = "1.0.0";
version = "1.1.0";
src = fetchFromGitHub {
owner = "numtide";
repo = "system-manager";
tag = "v${finalAttrs.version}";
hash = "sha256-Jjvn9gPmL6otZcaYjzE4cXLQFyzAEEsnpgwP3OoN8Gk=";
hash = "sha256-r0/UDbEeYmVqhtxiuJSUfYhjBjtLKHDWhMScpe1RkOA=";
};
cargoHash = "sha256-A3A1RRx9U43u6wmzPE+yZwi08m7vcD5ccLC89TgDvOg=";
cargoHash = "sha256-oJWEP3wmINuhm7BGGRHPO81j4Zwll0OtyBF5WJ9+oQk=";
buildInputs = [ dbus ];
nativeBuildInputs = [
@@ -50,7 +50,10 @@ rustPlatform.buildRustPackage (finalAttrs: {
homepage = "http://system-manager.net";
license = lib.licenses.mit;
mainProgram = "system-manager";
maintainers = with lib.maintainers; [ jfroche ];
maintainers = with lib.maintainers; [
jfroche
picnoir
];
platforms = lib.platforms.unix;
};
})