about summary refs log tree commit diff
path: root/pkgs/applications/version-management/srvc
diff options
context:
space:
mode:
authorJohn Shaffer <jdsha@proton.me>2023-01-24 18:41:42 -0600
committerJohn Shaffer <jdsha@proton.me>2023-01-24 18:41:42 -0600
commit5fd6c8467bcb2340e9e8490ddfc7541e033755ea (patch)
treeabbe821fb41f91066bb9e4dc21c881b4ec9a4497 /pkgs/applications/version-management/srvc
parentc5f7e1ea4400230e7ab073d100e1eaeb6733487e (diff)
srvc: 0.10.1 -> 0.13.0
Diffstat (limited to 'pkgs/applications/version-management/srvc')
-rw-r--r--pkgs/applications/version-management/srvc/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/applications/version-management/srvc/default.nix b/pkgs/applications/version-management/srvc/default.nix
index 763c60f654bba..cba7be9531732 100644
--- a/pkgs/applications/version-management/srvc/default.nix
+++ b/pkgs/applications/version-management/srvc/default.nix
@@ -1,23 +1,23 @@
-{ lib, rustPlatform, fetchFromGitHub, stdenv, Security, webfs }:
+{ lib, rustPlatform, fetchFromGitHub, stdenv, Security, git }:
 
 rustPlatform.buildRustPackage rec {
   pname = "srvc";
-  version = "0.10.1";
+  version = "0.13.0";
 
   src = fetchFromGitHub {
     owner = "insilica";
     repo = "rs-srvc";
     rev = "v${version}";
-    sha256 = "sha256-yeyAorVMHFl9wm57gmK6ZAI1w5daN2xl29Gqq0DsTtc=";
+    sha256 = "sha256-m4mN+vDEKPHRavtI9CbszOOdJcLYa+XqlzEyPvPXE0g=";
   };
 
-  cargoHash = "sha256-/1TL0lWb4I9h6nGV7exx7U6ACrieN0EULTWg7Weexeg=";
+  cargoHash = "sha256-USOYXb6/hEE9HVz5YcNZPY5yuvDxbrH4YyZxY7XNAto=";
 
   buildInputs = lib.optionals stdenv.isDarwin [
     Security
   ];
 
-  nativeCheckInputs = [ webfs ];
+  nativeCheckInputs = [ git ];
 
   # remove timeouts in tests to make them less flaky
   TEST_SRVC_DISABLE_TIMEOUT = 1;