about summary refs log tree commit diff
path: root/pkgs/tools/admin/hop-cli
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2023-10-28 23:08:37 +0000
committerWeijia Wang <9713184+wegank@users.noreply.github.com>2023-11-04 01:55:34 +0100
commitb8d7411c65d17448347cb5e26ba64ad15fc8a082 (patch)
tree55fc6e853cc74e7a51d8db9ce4356e3df8badabf /pkgs/tools/admin/hop-cli
parentd59ba91d5a8687a8872ce4941ef23533fc2aa009 (diff)
downloadnixlib-b8d7411c65d17448347cb5e26ba64ad15fc8a082.tar
nixlib-b8d7411c65d17448347cb5e26ba64ad15fc8a082.tar.gz
nixlib-b8d7411c65d17448347cb5e26ba64ad15fc8a082.tar.bz2
nixlib-b8d7411c65d17448347cb5e26ba64ad15fc8a082.tar.lz
nixlib-b8d7411c65d17448347cb5e26ba64ad15fc8a082.tar.xz
nixlib-b8d7411c65d17448347cb5e26ba64ad15fc8a082.tar.zst
nixlib-b8d7411c65d17448347cb5e26ba64ad15fc8a082.zip
hop-cli: 0.2.54 -> 0.2.60
Diffstat (limited to 'pkgs/tools/admin/hop-cli')
-rw-r--r--pkgs/tools/admin/hop-cli/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/tools/admin/hop-cli/default.nix b/pkgs/tools/admin/hop-cli/default.nix
index 4d9734874e2c..43705fc722aa 100644
--- a/pkgs/tools/admin/hop-cli/default.nix
+++ b/pkgs/tools/admin/hop-cli/default.nix
@@ -6,20 +6,21 @@
 , stdenv
 , CoreServices
 , Security
+, SystemConfiguration
 }:
 
 rustPlatform.buildRustPackage rec {
   pname = "hop-cli";
-  version = "0.2.54";
+  version = "0.2.60";
 
   src = fetchFromGitHub {
     owner = "hopinc";
     repo = "cli";
     rev = "v${version}";
-    hash = "sha256-0BIPN4+XYZgUdxygpKpWZq6VkWWNCFD8v5egXOYfC64=";
+    hash = "sha256-zNAV9WdtRBlCh7Joky5Dl+cw/FpY1m/WJxUoNikmXvQ=";
   };
 
-  cargoHash = "sha256-KE7AAyArRang/EZrpgv+vlNZaAP/Y2pCltiPMgZ5vFA=";
+  cargoHash = "sha256-1QD6mEXRw3NCTBKJyVGK3demLKUdE6smELpvdFSJiWY=";
 
   nativeBuildInputs = [
     pkg-config
@@ -28,7 +29,7 @@ rustPlatform.buildRustPackage rec {
   buildInputs = [
     openssl
   ] ++ lib.optionals stdenv.isDarwin [
-    CoreServices Security
+    CoreServices Security SystemConfiguration
   ];
 
   OPENSSL_NO_VENDOR = 1;