tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
cargo: 0.5.0 -> 0.6.0
Ricardo M. Correia
10 years ago
84afac6b
75ee351e
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
development
tools
build-managers
cargo
default.nix
+3
-3
pkgs/development/tools/build-managers/cargo/default.nix
···
1
{ stdenv, fetchgit, rustPlatform, file, curl, python, pkgconfig, openssl
2
, cmake, zlib }:
3
4
-
with ((import ./common.nix) { inherit stdenv; version = "0.5.0"; });
5
6
with rustPlatform;
7
···
12
src = fetchgit {
13
url = "git://github.com/rust-lang/cargo";
14
rev = "refs/tags/${version}";
15
-
sha256 = "1wg7vr6fpk9n76ly65lf2z9w1dj5nhykffbwrv46lybd8m3r8x3w";
16
};
17
18
-
depsSha256 = "1q92q63g9pz7fy9fhx8y0kqarsshmzv1dq18ki3hdd7d5pcbczna";
19
20
buildInputs = [ file curl pkgconfig python openssl cmake zlib ];
21
···
1
{ stdenv, fetchgit, rustPlatform, file, curl, python, pkgconfig, openssl
2
, cmake, zlib }:
3
4
+
with ((import ./common.nix) { inherit stdenv; version = "0.6.0"; });
5
6
with rustPlatform;
7
···
12
src = fetchgit {
13
url = "git://github.com/rust-lang/cargo";
14
rev = "refs/tags/${version}";
15
+
sha256 = "1kxri32sz9ygnf4wlbj7hc7q9p6hmm5xrb9zzkx23wzkzbcpyjyz";
16
};
17
18
+
depsSha256 = "1m045yywv67sx75idbsny59d3dzbqnhr07k41jial5n5zwp87mb9";
19
20
buildInputs = [ file curl pkgconfig python openssl cmake zlib ];
21