2021-01-22 12:25:31 +01:00
|
|
|
{ lib, stdenv, file, curl, pkg-config, python3, openssl, cmake, zlib
|
2021-05-07 23:36:21 +02:00
|
|
|
, installShellFiles, makeWrapper, cacert, rustPlatform, rustc
|
2018-10-26 17:06:56 +02:00
|
|
|
, CoreFoundation, Security
|
2018-11-21 02:47:45 +01:00
|
|
|
}:
|
2017-11-05 11:13:49 +01:00
|
|
|
|
2019-08-13 23:52:01 +02:00
|
|
|
rustPlatform.buildRustPackage {
|
2018-11-21 02:47:45 +01:00
|
|
|
name = "cargo-${rustc.version}";
|
|
|
|
inherit (rustc) version src;
|
2016-06-07 20:42:51 +02:00
|
|
|
|
2018-02-20 10:59:26 +01:00
|
|
|
# the rust source tarball already has all the dependencies vendored, no need to fetch them again
|
2019-01-19 15:47:18 +01:00
|
|
|
cargoVendorDir = "vendor";
|
2020-05-13 01:28:24 +02:00
|
|
|
buildAndTestSubdir = "src/tools/cargo";
|
2016-06-07 20:42:51 +02:00
|
|
|
|
|
|
|
passthru.rustc = rustc;
|
|
|
|
|
2018-08-14 09:40:47 +02:00
|
|
|
# changes hash of vendor directory otherwise
|
|
|
|
dontUpdateAutotoolsGnuConfigScripts = true;
|
2018-02-22 12:46:30 +01:00
|
|
|
|
2021-01-19 07:50:56 +01:00
|
|
|
nativeBuildInputs = [ pkg-config cmake installShellFiles makeWrapper ];
|
2020-02-12 17:00:19 +01:00
|
|
|
buildInputs = [ cacert file curl python3 openssl zlib ]
|
2021-05-07 23:36:21 +02:00
|
|
|
++ lib.optionals stdenv.isDarwin [ CoreFoundation Security ];
|
2016-08-08 15:55:26 +02:00
|
|
|
|
2020-02-12 17:00:19 +01: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;
|
2016-06-07 20:42:51 +02:00
|
|
|
|
2018-09-11 23:20:20 +02:00
|
|
|
# fixes: the cargo feature `edition` requires a nightly version of Cargo, but this is the `stable` channel
|
2019-03-12 02:19:48 +01:00
|
|
|
RUSTC_BOOTSTRAP = 1;
|
2018-09-11 23:20:20 +02:00
|
|
|
|
2016-06-07 20:42:51 +02:00
|
|
|
postInstall = ''
|
2016-08-08 15:55:26 +02: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
|
2016-06-07 20:42:51 +02:00
|
|
|
wrapProgram "$out/bin/cargo" \
|
|
|
|
--suffix PATH : "${rustc}/bin" \
|
2016-08-08 15:55:26 +02:00
|
|
|
--set CARGO_HTTP_CAINFO "${cacert}/etc/ssl/certs/ca-bundle.crt" \
|
2017-11-05 11:13:49 +01:00
|
|
|
--set SSL_CERT_FILE "${cacert}/etc/ssl/certs/ca-bundle.crt"
|
2020-02-11 18:52:11 +01:00
|
|
|
|
|
|
|
installManPage src/tools/cargo/src/etc/man/*
|
2020-06-27 00:56:11 +02:00
|
|
|
|
|
|
|
installShellCompletion --bash --name cargo \
|
|
|
|
src/tools/cargo/src/etc/cargo.bashcomp.sh
|
|
|
|
|
|
|
|
installShellCompletion --zsh src/tools/cargo/src/etc/_cargo
|
2016-06-07 20:42:51 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
# Disable cross compilation tests
|
|
|
|
export CFG_DISABLE_CROSS_TESTS=1
|
|
|
|
cargo test
|
|
|
|
'';
|
|
|
|
|
2016-12-29 08:56:19 +01:00
|
|
|
# Disable check phase as there are failures (4 tests fail)
|
2016-06-07 20:42:51 +02:00
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-22 12:25:31 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://crates.io";
|
2016-06-07 20:42:51 +02:00
|
|
|
description = "Downloads your Rust project's dependencies and builds your project";
|
2019-10-08 19:52:47 +02:00
|
|
|
maintainers = with maintainers; [ retrry ];
|
2016-06-07 20:42:51 +02:00
|
|
|
license = [ licenses.mit licenses.asl20 ];
|
2018-02-03 12:51:03 +01:00
|
|
|
platforms = platforms.unix;
|
2016-06-07 20:42:51 +02:00
|
|
|
};
|
|
|
|
}
|