205a6b894d
For now, let's remove `leaveDotGit`. The only visible effect I could see was that `cargo --version` won't report the git commit anymore, but that's only a minor issue compared to the build breaking often. Fixes #8566 and closes #8862.
35 lines
878 B
Nix
35 lines
878 B
Nix
{ stdenv, fetchgit, rustPlatform, file, curl, python, pkgconfig, openssl
|
|
, cmake, zlib }:
|
|
|
|
with ((import ./common.nix) { inherit stdenv; version = "0.3.0"; });
|
|
|
|
with rustPlatform;
|
|
|
|
buildRustPackage rec {
|
|
inherit name version meta;
|
|
|
|
src = fetchgit {
|
|
url = "https://github.com/rust-lang/cargo.git";
|
|
rev = "refs/tags/0.3.0";
|
|
sha256 = "0p7p7yivydjkpqb53a8i7pjl719z3gxa6czi0255ccwsh6n9z793";
|
|
};
|
|
|
|
depsSha256 = "1sgdr2akd9xrfmf5g0lbf842b2pdj1ymxk37my0cf2x349rjsf0w";
|
|
|
|
buildInputs = [ file curl pkgconfig python openssl cmake zlib ];
|
|
|
|
configurePhase = ''
|
|
./configure --enable-optimize --prefix=$out --local-cargo=${cargo}/bin/cargo
|
|
'';
|
|
|
|
buildPhase = "make";
|
|
|
|
# Disable check phase as there are lots of failures (some probably due to
|
|
# trying to access the network).
|
|
doCheck = false;
|
|
|
|
installPhase = ''
|
|
make install
|
|
${postInstall}
|
|
'';
|
|
}
|