nixpkgs/pkgs/development/compilers/rust/cargo.nix

61 lines
2.0 KiB
Nix
Raw Normal View History

2019-12-15 04:52:34 -08:00
{ stdenv, file, curl, pkgconfig, python3, openssl, cmake, zlib
, installShellFiles, makeWrapper, libiconv, cacert, rustPlatform, rustc
, CoreFoundation, Security
2018-11-20 17:47:45 -08:00
}:
2017-11-05 02:13:49 -08:00
2019-08-13 14:52:01 -07:00
rustPlatform.buildRustPackage {
2018-11-20 17:47:45 -08:00
name = "cargo-${rustc.version}";
inherit (rustc) version src;
2018-02-20 01:59:26 -08:00
# the rust source tarball already has all the dependencies vendored, no need to fetch them again
2019-01-19 06:47:18 -08:00
cargoVendorDir = "vendor";
preBuild = "pushd src/tools/cargo";
2018-02-20 01:59:26 -08:00
postBuild = "popd";
passthru.rustc = rustc;
# changes hash of vendor directory otherwise
dontUpdateAutotoolsGnuConfigScripts = true;
2018-02-22 03:46:30 -08:00
nativeBuildInputs = [ pkgconfig cmake installShellFiles makeWrapper ];
buildInputs = [ cacert file curl python3 openssl zlib ]
++ stdenv.lib.optionals stdenv.isDarwin [ CoreFoundation Security libiconv ];
2016-08-08 06:55:26 -07:00
# cargo uses git-rs which is made for a version of libgit2 from recent master that
# is not compatible with the current version in nixpkgs.
#LIBGIT2_SYS_USE_PKG_CONFIG = 1;
2018-09-11 14:20:20 -07:00
# fixes: the cargo feature `edition` requires a nightly version of Cargo, but this is the `stable` channel
RUSTC_BOOTSTRAP = 1;
2018-09-11 14:20:20 -07:00
postInstall = ''
2016-08-08 06:55:26 -07:00
# NOTE: We override the `http.cainfo` option usually specified in
# `.cargo/config`. This is an issue when users want to specify
# their own certificate chain as environment variables take
# precedence
wrapProgram "$out/bin/cargo" \
--suffix PATH : "${rustc}/bin" \
2016-08-08 06:55:26 -07:00
--set CARGO_HTTP_CAINFO "${cacert}/etc/ssl/certs/ca-bundle.crt" \
2017-11-05 02:13:49 -08:00
--set SSL_CERT_FILE "${cacert}/etc/ssl/certs/ca-bundle.crt"
installManPage src/tools/cargo/src/etc/man/*
'';
checkPhase = ''
# Disable cross compilation tests
export CFG_DISABLE_CROSS_TESTS=1
cargo test
'';
2016-12-28 23:56:19 -08:00
# Disable check phase as there are failures (4 tests fail)
doCheck = false;
meta = with stdenv.lib; {
homepage = "https://crates.io";
description = "Downloads your Rust project's dependencies and builds your project";
maintainers = with maintainers; [ retrry ];
license = [ licenses.mit licenses.asl20 ];
platforms = platforms.unix;
};
}