tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
0
fork
atom
overview
issues
pulls
pipelines
cargo: switch to python3
Jan Tojnar
6 years ago
08c0f120
f288a7c0
+2
-2
1 changed file
expand all
collapse all
unified
split
pkgs
development
compilers
rust
cargo.nix
+2
-2
pkgs/development/compilers/rust/cargo.nix
reviewed
···
1
1
-
{ stdenv, file, curl, pkgconfig, python, openssl, cmake, zlib
1
1
+
{ stdenv, file, curl, pkgconfig, python3, openssl, cmake, zlib
2
2
, makeWrapper, libiconv, cacert, rustPlatform, rustc, libgit2
3
3
, CoreFoundation, Security
4
4
}:
···
18
18
dontUpdateAutotoolsGnuConfigScripts = true;
19
19
20
20
nativeBuildInputs = [ pkgconfig cmake makeWrapper ];
21
21
-
buildInputs = [ cacert file curl python openssl zlib libgit2 ]
21
21
+
buildInputs = [ cacert file curl python3 openssl zlib libgit2 ]
22
22
++ stdenv.lib.optionals stdenv.isDarwin [ CoreFoundation Security libiconv ];
23
23
24
24
LIBGIT2_SYS_USE_PKG_CONFIG = 1;