cargo-crev: 0.23.2 -> 0.23.3

authored by

Stanisław Pitucha and committed by
Stanisław Pitucha
55e551ca e2c651c0

+6 -5
+5 -4
pkgs/development/tools/rust/cargo-crev/default.nix
··· 5 5 , pkg-config 6 6 , SystemConfiguration 7 7 , Security 8 + , CoreFoundation 8 9 , curl 9 10 , libiconv 10 11 , openssl ··· 13 14 14 15 rustPlatform.buildRustPackage rec { 15 16 pname = "cargo-crev"; 16 - version = "0.23.2"; 17 + version = "0.23.3"; 17 18 18 19 src = fetchFromGitHub { 19 20 owner = "crev-dev"; 20 21 repo = "cargo-crev"; 21 22 rev = "v${version}"; 22 - sha256 = "sha256-q/GbEsGQip7+wXxbVFfm9l3tdCT2o4yhWVTY1qmnEic="; 23 + sha256 = "sha256-wMF2uF6h06c/vBBXr2IGk/9RsOxnxvffEtIOR+s+iVk="; 23 24 }; 24 25 25 - cargoSha256 = "sha256-pqOVKLh+ovUy+rJIz0tjp56qhilZTno4t4dZyCY1r7c="; 26 + cargoSha256 = "sha256-UF0bEV77IqGBmqGCqg2cHzom7JDRqlLpoSxbNQsKKiY="; 26 27 27 28 preCheck = '' 28 29 export HOME=$(mktemp -d) ··· 32 33 33 34 nativeBuildInputs = [ perl pkg-config ]; 34 35 35 - buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ SystemConfiguration Security libiconv curl ]; 36 + buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ SystemConfiguration Security CoreFoundation libiconv curl ]; 36 37 37 38 checkInputs = [ git ]; 38 39
+1 -1
pkgs/top-level/all-packages.nix
··· 14260 14260 inherit (darwin.apple_sdk.frameworks) Security; 14261 14261 }; 14262 14262 cargo-crev = callPackage ../development/tools/rust/cargo-crev { 14263 - inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration; 14263 + inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration CoreFoundation; 14264 14264 }; 14265 14265 cargo-cross = callPackage ../development/tools/rust/cargo-cross { }; 14266 14266 cargo-deny = callPackage ../development/tools/rust/cargo-deny {