From 749ef6034057f1612ca5c25c966f39d5df37a7e6 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 9 Dec 2024 09:11:33 +0000 Subject: [PATCH 1/2] git-workspace: 1.7.0 -> 1.8.0 --- .../version-management/git-workspace/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/version-management/git-workspace/default.nix b/pkgs/applications/version-management/git-workspace/default.nix index 299f9046290e..f1f41c18d4fb 100644 --- a/pkgs/applications/version-management/git-workspace/default.nix +++ b/pkgs/applications/version-management/git-workspace/default.nix @@ -13,16 +13,16 @@ rustPlatform.buildRustPackage rec { pname = "git-workspace"; - version = "1.7.0"; + version = "1.8.0"; src = fetchFromGitHub { owner = "orf"; repo = pname; rev = "v${version}"; - sha256 = "sha256-cAAEbeA7+lnFH5vr+cfOlkhRjZJnIWX7AoKnow68k3I="; + sha256 = "sha256-sS452PCX2G49Q5tnScG+ySkUAhFctGsGZrMvQXL7WkY="; }; - cargoHash = "sha256-xLsN9yiAo7HP2HpixZ5SUu0Wnv07nL9D8t+JPT6uKb0="; + cargoHash = "sha256-OrAZ4SGhqP+cGYB2gUIh6rON67hBRmgnq1nn9cEUAU0="; nativeBuildInputs = [ pkg-config ]; From 7996ffc5cf0c790480ae0ae6f69ac18c8a2a324f Mon Sep 17 00:00:00 2001 From: misuzu Date: Mon, 9 Dec 2024 11:53:52 +0200 Subject: [PATCH 2/2] git-workspace: remove passthru.tests.version The `--version` argument was removed. --- .../version-management/git-workspace/default.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pkgs/applications/version-management/git-workspace/default.nix b/pkgs/applications/version-management/git-workspace/default.nix index f1f41c18d4fb..36ca542517f9 100644 --- a/pkgs/applications/version-management/git-workspace/default.nix +++ b/pkgs/applications/version-management/git-workspace/default.nix @@ -29,10 +29,7 @@ rustPlatform.buildRustPackage rec { buildInputs = [ openssl ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ libiconv Security ]; - passthru = { - updateScript = nix-update-script { }; - tests.version = testers.testVersion { package = git-workspace; }; - }; + passthru.updateScript = nix-update-script { }; meta = with lib; { description = "Sync personal and work git repositories from multiple providers";