2017-10-08 20:26:40 +02:00
|
|
|
{ stdenv, fetchFromGitHub, file, curl, pkgconfig, python, openssl, cmake, zlib
|
2017-10-23 10:23:34 +02:00
|
|
|
, makeWrapper, libiconv, cacert, rustPlatform, rustc, libgit2, darwin
|
2018-02-20 10:59:26 +01:00
|
|
|
, version
|
|
|
|
, patches ? []
|
|
|
|
, src }:
|
2017-11-05 11:13:49 +01:00
|
|
|
|
|
|
|
let
|
|
|
|
inherit (darwin.apple_sdk.frameworks) CoreFoundation;
|
|
|
|
in
|
2016-06-07 20:42:51 +02:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
name = "cargo-${version}";
|
2018-02-20 10:59:26 +01:00
|
|
|
inherit version src patches;
|
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
|
|
|
|
cargoVendorDir = "src/vendor";
|
|
|
|
preBuild = "cd src; pushd tools/cargo";
|
|
|
|
postBuild = "popd";
|
2016-06-07 20:42:51 +02:00
|
|
|
|
|
|
|
passthru.rustc = rustc;
|
|
|
|
|
2018-02-22 12:46:30 +01:00
|
|
|
# changes hash of vendor directory otherwise on aarch64
|
|
|
|
dontUpdateAutotoolsGnuConfigScripts = if stdenv.isAarch64 then "1" else null;
|
|
|
|
|
2017-09-05 23:26:13 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2017-12-27 21:26:36 +01:00
|
|
|
buildInputs = [ cacert file curl python openssl cmake zlib makeWrapper libgit2 ]
|
2017-11-05 11:13:49 +01:00
|
|
|
++ stdenv.lib.optionals stdenv.isDarwin [ CoreFoundation libiconv ];
|
2016-08-08 15:55:26 +02:00
|
|
|
|
|
|
|
LIBGIT2_SYS_USE_PKG_CONFIG=1;
|
2016-06-07 20:42:51 +02:00
|
|
|
|
2017-11-05 11:13:49 +01:00
|
|
|
# FIXME: Use impure version of CoreFoundation because of missing symbols.
|
|
|
|
# CFURLSetResourcePropertyForKey is defined in the headers but there's no
|
|
|
|
# corresponding implementation in the sources from opensource.apple.com.
|
|
|
|
preConfigure = stdenv.lib.optionalString stdenv.isDarwin ''
|
|
|
|
export NIX_CFLAGS_COMPILE="-F${CoreFoundation}/Library/Frameworks $NIX_CFLAGS_COMPILE"
|
|
|
|
'';
|
|
|
|
|
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"
|
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;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2017-08-17 23:59:59 +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";
|
|
|
|
maintainers = with maintainers; [ wizeman retrry ];
|
|
|
|
license = [ licenses.mit licenses.asl20 ];
|
2018-02-03 12:51:03 +01:00
|
|
|
platforms = platforms.unix;
|
2016-06-07 20:42:51 +02:00
|
|
|
};
|
|
|
|
}
|