Unverified Commit fd20e865 authored by Félix's avatar Félix Committed by GitHub
Browse files

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

parents 06a8a721 1d90a9a7
Loading
Loading
Loading
Loading
+7 −4
Original line number Diff line number Diff line
@@ -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;
  };
})