tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
cached-nix-shell: 0.1.4 -> 0.1.5
Albert Safin
4 years ago
cdd3c44b
8c20fed5
+5
-5
1 changed file
expand all
collapse all
unified
split
pkgs
tools
nix
cached-nix-shell
default.nix
+5
-5
pkgs/tools/nix/cached-nix-shell/default.nix
···
1
1
-
{ lib, fetchFromGitHub, openssl, pkg-config, ronn, rustPlatform }:
1
1
+
{ lib, fetchFromGitHub, nix, openssl, pkg-config, ronn, rustPlatform }:
2
2
3
3
let
4
4
blake3-src = fetchFromGitHub {
···
10
10
11
11
in rustPlatform.buildRustPackage rec {
12
12
pname = "cached-nix-shell";
13
13
-
version = "0.1.4";
13
13
+
version = "0.1.5";
14
14
15
15
src = fetchFromGitHub {
16
16
owner = "xzfc";
17
17
repo = pname;
18
18
rev = "v${version}";
19
19
-
sha256 = "0w6khry1ncyqy5h6996xw1f6viw4wdrfji5m8lz9gm487xlq5v0b";
19
19
+
sha256 = "17v38llx83mp05a0axjxcd2zyafd57syh7xhx5cq6qibcbha0by9";
20
20
};
21
21
22
22
-
cargoSha256 = "05lcm5fzsn3h6dl2n2yq52r2vagrgmab08kafinz2kdcvv05wpk5";
22
22
+
cargoSha256 = "1jkkwsn3k2anmzf99x99r9zfnf0gpcjbi5pyakh4agiryqcdyg0j";
23
23
24
24
# The BLAKE3 C library is intended to be built by the project depending on it
25
25
# rather than as a standalone library.
26
26
# https://github.com/BLAKE3-team/BLAKE3/blob/0.3.1/c/README.md#building
27
27
BLAKE3_CSRC = "${blake3-src}/c";
28
28
29
29
-
nativeBuildInputs = [ ronn ];
29
29
+
nativeBuildInputs = [ nix ronn ];
30
30
31
31
postBuild = ''
32
32
make -f nix/Makefile post-build