2014-09-14 01:14:48 +01:00
|
|
|
{ stdenv, fetchurl, zlib }:
|
|
|
|
|
|
|
|
/* Cargo binary snapshot */
|
|
|
|
|
2015-04-12 07:14:51 +01:00
|
|
|
let snapshotDate = "2015-04-02";
|
2015-01-08 08:38:20 +00:00
|
|
|
in
|
2014-09-14 01:14:48 +01:00
|
|
|
|
2015-01-08 08:38:20 +00:00
|
|
|
with ((import ./common.nix) { inherit stdenv; version = "snapshot-${snapshotDate}"; });
|
|
|
|
|
|
|
|
let snapshotHash = if stdenv.system == "i686-linux"
|
2015-04-12 07:14:51 +01:00
|
|
|
then "ba6c162680d5509d89ba2363d7cae2047f40c034"
|
2015-01-08 08:38:20 +00:00
|
|
|
else if stdenv.system == "x86_64-linux"
|
2015-04-12 07:14:51 +01:00
|
|
|
then "94f715c9a52809a639f2ce6f8b1d5215a0c272b5"
|
2015-01-08 08:38:20 +00:00
|
|
|
else if stdenv.system == "i686-darwin"
|
2015-04-12 07:14:51 +01:00
|
|
|
then "cf333f16f89bfd50e8ce461c6f81ca30d33f7f73"
|
2015-01-08 08:38:20 +00:00
|
|
|
else if stdenv.system == "x86_64-darwin"
|
2015-04-12 07:14:51 +01:00
|
|
|
then "1f7008a6ec860e2bc7580e71bdf320ac518ddeb8"
|
2015-01-08 08:38:20 +00:00
|
|
|
else throw "no snapshot for platform ${stdenv.system}";
|
|
|
|
snapshotName = "cargo-nightly-${platform}.tar.gz";
|
|
|
|
in
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2015-04-23 14:14:34 +01:00
|
|
|
inherit name version meta;
|
2015-01-08 08:38:20 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://static-rust-lang-org.s3.amazonaws.com/cargo-dist/${snapshotDate}/${snapshotName}";
|
|
|
|
sha1 = snapshotHash;
|
|
|
|
};
|
|
|
|
|
|
|
|
dontStrip = true;
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p "$out"
|
2015-03-04 16:59:16 +00:00
|
|
|
./install.sh "--prefix=$out"
|
2014-10-10 15:59:37 +01:00
|
|
|
|
|
|
|
${postInstall}
|
2015-01-08 08:38:20 +00:00
|
|
|
'' + (if stdenv.isLinux then ''
|
|
|
|
patchelf --interpreter "${stdenv.glibc}/lib/${stdenv.cc.dynamicLinker}" \
|
2015-01-15 04:25:26 +00:00
|
|
|
--set-rpath "${stdenv.cc.cc}/lib/:${stdenv.cc.cc}/lib64/:${zlib}/lib" \
|
2015-01-08 08:38:20 +00:00
|
|
|
"$out/bin/cargo"
|
|
|
|
'' else "");
|
|
|
|
}
|