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

67 lines
2.1 KiB
Nix
Raw Normal View History

2017-10-08 18:26:40 +00:00
{ stdenv, fetchFromGitHub, file, curl, pkgconfig, python, openssl, cmake, zlib
2017-10-23 08:23:34 +00:00
, makeWrapper, libiconv, cacert, rustPlatform, rustc, libgit2, darwin
, version, srcSha, cargoSha256
2017-11-05 10:13:49 +00:00
, patches ? [] }:
let
inherit (darwin.apple_sdk.frameworks) CoreFoundation;
in
rustPlatform.buildRustPackage rec {
name = "cargo-${version}";
inherit version;
2017-10-08 18:26:40 +00:00
src = fetchFromGitHub {
owner = "rust-lang";
repo = "cargo";
rev = version;
sha256 = srcSha;
};
inherit cargoSha256;
2016-08-08 13:55:26 +00:00
inherit patches;
passthru.rustc = rustc;
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ cacert file curl python openssl cmake zlib makeWrapper libgit2 ]
2017-11-05 10:13:49 +00:00
++ stdenv.lib.optionals stdenv.isDarwin [ CoreFoundation libiconv ];
2016-08-08 13:55:26 +00:00
LIBGIT2_SYS_USE_PKG_CONFIG=1;
2017-11-05 10:13:49 +00: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"
'';
postInstall = ''
2016-08-08 13:55:26 +00: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 13:55:26 +00:00
--set CARGO_HTTP_CAINFO "${cacert}/etc/ssl/certs/ca-bundle.crt" \
2017-11-05 10:13:49 +00:00
--set SSL_CERT_FILE "${cacert}/etc/ssl/certs/ca-bundle.crt"
'';
checkPhase = ''
# Disable cross compilation tests
export CFG_DISABLE_CROSS_TESTS=1
cargo test
'';
2016-12-29 07:56:19 +00: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; [ wizeman retrry ];
license = [ licenses.mit licenses.asl20 ];
platforms = [ "x86_64-linux" "x86_64-darwin" ];
};
}