Merge pull request #264055 from r-ryantm/auto-update/hop-cli

hop-cli: 0.2.54 -> 0.2.60

authored by

Weijia Wang and committed by
GitHub
0d2d729b 079bc457

+6 -5
+5 -4
pkgs/tools/admin/hop-cli/default.nix
··· 6 6 , stdenv 7 7 , CoreServices 8 8 , Security 9 + , SystemConfiguration 9 10 }: 10 11 11 12 rustPlatform.buildRustPackage rec { 12 13 pname = "hop-cli"; 13 - version = "0.2.54"; 14 + version = "0.2.60"; 14 15 15 16 src = fetchFromGitHub { 16 17 owner = "hopinc"; 17 18 repo = "cli"; 18 19 rev = "v${version}"; 19 - hash = "sha256-0BIPN4+XYZgUdxygpKpWZq6VkWWNCFD8v5egXOYfC64="; 20 + hash = "sha256-zNAV9WdtRBlCh7Joky5Dl+cw/FpY1m/WJxUoNikmXvQ="; 20 21 }; 21 22 22 - cargoHash = "sha256-KE7AAyArRang/EZrpgv+vlNZaAP/Y2pCltiPMgZ5vFA="; 23 + cargoHash = "sha256-1QD6mEXRw3NCTBKJyVGK3demLKUdE6smELpvdFSJiWY="; 23 24 24 25 nativeBuildInputs = [ 25 26 pkg-config ··· 28 29 buildInputs = [ 29 30 openssl 30 31 ] ++ lib.optionals stdenv.isDarwin [ 31 - CoreServices Security 32 + CoreServices Security SystemConfiguration 32 33 ]; 33 34 34 35 OPENSSL_NO_VENDOR = 1;
+1 -1
pkgs/top-level/all-packages.nix
··· 16383 16383 hop = callPackage ../development/compilers/hop { }; 16384 16384 16385 16385 hop-cli = callPackage ../tools/admin/hop-cli { 16386 - inherit (darwin.apple_sdk.frameworks) CoreServices Security; 16386 + inherit (darwin.apple_sdk.frameworks) CoreServices Security SystemConfiguration; 16387 16387 }; 16388 16388 16389 16389 falcon = callPackage ../development/interpreters/falcon {