lol

cached-nix-shell: 0.1.4 -> 0.1.5

+5 -5
+5 -5
pkgs/tools/nix/cached-nix-shell/default.nix
··· 1 - { lib, fetchFromGitHub, openssl, pkg-config, ronn, rustPlatform }: 2 3 let 4 blake3-src = fetchFromGitHub { ··· 10 11 in rustPlatform.buildRustPackage rec { 12 pname = "cached-nix-shell"; 13 - version = "0.1.4"; 14 15 src = fetchFromGitHub { 16 owner = "xzfc"; 17 repo = pname; 18 rev = "v${version}"; 19 - sha256 = "0w6khry1ncyqy5h6996xw1f6viw4wdrfji5m8lz9gm487xlq5v0b"; 20 }; 21 22 - cargoSha256 = "05lcm5fzsn3h6dl2n2yq52r2vagrgmab08kafinz2kdcvv05wpk5"; 23 24 # The BLAKE3 C library is intended to be built by the project depending on it 25 # rather than as a standalone library. 26 # https://github.com/BLAKE3-team/BLAKE3/blob/0.3.1/c/README.md#building 27 BLAKE3_CSRC = "${blake3-src}/c"; 28 29 - nativeBuildInputs = [ ronn ]; 30 31 postBuild = '' 32 make -f nix/Makefile post-build
··· 1 + { lib, fetchFromGitHub, nix, openssl, pkg-config, ronn, rustPlatform }: 2 3 let 4 blake3-src = fetchFromGitHub { ··· 10 11 in rustPlatform.buildRustPackage rec { 12 pname = "cached-nix-shell"; 13 + version = "0.1.5"; 14 15 src = fetchFromGitHub { 16 owner = "xzfc"; 17 repo = pname; 18 rev = "v${version}"; 19 + sha256 = "17v38llx83mp05a0axjxcd2zyafd57syh7xhx5cq6qibcbha0by9"; 20 }; 21 22 + cargoSha256 = "1jkkwsn3k2anmzf99x99r9zfnf0gpcjbi5pyakh4agiryqcdyg0j"; 23 24 # The BLAKE3 C library is intended to be built by the project depending on it 25 # rather than as a standalone library. 26 # https://github.com/BLAKE3-team/BLAKE3/blob/0.3.1/c/README.md#building 27 BLAKE3_CSRC = "${blake3-src}/c"; 28 29 + nativeBuildInputs = [ nix ronn ]; 30 31 postBuild = '' 32 make -f nix/Makefile post-build