about summary refs log tree commit diff
path: root/pkgs/development/tools/build-managers/cargo/snapshot.nix
blob: 57b5378211caff07f216935a66e107091172ab02 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{ stdenv, fetchurl, zlib }:

/* Cargo binary snapshot */

let snapshotDate = "2015-04-02";
in

with ((import ./common.nix) { inherit stdenv; version = "snapshot-${snapshotDate}"; });

let snapshotHash = if stdenv.system == "i686-linux"
      then "ba6c162680d5509d89ba2363d7cae2047f40c034"
      else if stdenv.system == "x86_64-linux"
      then "94f715c9a52809a639f2ce6f8b1d5215a0c272b5"
      else if stdenv.system == "i686-darwin"
      then "cf333f16f89bfd50e8ce461c6f81ca30d33f7f73"
      else if stdenv.system == "x86_64-darwin"
      then "1f7008a6ec860e2bc7580e71bdf320ac518ddeb8"
      else throw "no snapshot for platform ${stdenv.system}";
    snapshotName = "cargo-nightly-${platform}.tar.gz";
in


stdenv.mkDerivation {
  inherit name;
  inherit version;
  inherit meta;

  src = fetchurl {
    url = "https://static-rust-lang-org.s3.amazonaws.com/cargo-dist/${snapshotDate}/${snapshotName}";
    sha1 = snapshotHash;
  };

  dontStrip = true;

  installPhase = ''
    mkdir -p "$out"
    ./install.sh "--prefix=$out"
    rm "$out/lib/rustlib/components" \
       "$out/lib/rustlib/install.log" \
       "$out/lib/rustlib/rust-installer-version" \
       "$out/lib/rustlib/uninstall.sh"
  '' + (if stdenv.isLinux then ''
    patchelf --interpreter "${stdenv.glibc.out}/lib/${stdenv.cc.dynamicLinker}" \
             --set-rpath "${stdenv.cc.cc}/lib/:${stdenv.cc.cc}/lib64/:${zlib}/lib" \
             "$out/bin/cargo"
  '' else "");
}