forked from mirrors/nixpkgs
39 lines
1.2 KiB
Nix
39 lines
1.2 KiB
Nix
{stdenv, version, rustc}:
|
|
|
|
{
|
|
inherit version;
|
|
|
|
name = "cargo-${version}";
|
|
|
|
postInstall = ''
|
|
rm "$out/lib/rustlib/components" \
|
|
"$out/lib/rustlib/install.log" \
|
|
"$out/lib/rustlib/rust-installer-version" \
|
|
"$out/lib/rustlib/uninstall.sh" \
|
|
"$out/lib/rustlib/manifest-cargo"
|
|
|
|
wrapProgram "$out/bin/cargo" --suffix PATH : "${rustc}/bin" \
|
|
${stdenv.lib.optionalString stdenv.isDarwin ''--suffix DYLD_LIBRARY_PATH : "${rustc}/lib"''}
|
|
'';
|
|
|
|
platform = if stdenv.system == "i686-linux"
|
|
then "i686-unknown-linux-gnu"
|
|
else if stdenv.system == "x86_64-linux"
|
|
then "x86_64-unknown-linux-gnu"
|
|
else if stdenv.system == "i686-darwin"
|
|
then "i686-apple-darwin"
|
|
else if stdenv.system == "x86_64-darwin"
|
|
then "x86_64-apple-darwin"
|
|
else throw "no snapshot to bootstrap for this platform (missing platform url suffix)";
|
|
|
|
passthru.rustc = rustc;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://crates.io;
|
|
description = "Downloads your Rust project's dependencies and builds your project";
|
|
maintainers = with maintainers; [ wizeman retrry ];
|
|
license = [ licenses.mit licenses.asl20 ];
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
};
|
|
}
|