2017-01-24 09:53:18 +00:00
|
|
|
{ useClang ? false }:
|
|
|
|
|
2019-12-04 14:32:28 +00:00
|
|
|
with import (builtins.fetchTarball https://github.com/NixOS/nixpkgs/archive/bb1013511e1e5edcf314df8321acf2f3c536df0d.tar.gz) {};
|
2016-11-28 15:13:23 +00:00
|
|
|
|
2017-05-15 15:30:33 +00:00
|
|
|
with import ./release-common.nix { inherit pkgs; };
|
|
|
|
|
2017-01-24 09:53:18 +00:00
|
|
|
(if useClang then clangStdenv else stdenv).mkDerivation {
|
2016-11-28 15:13:23 +00:00
|
|
|
name = "nix";
|
|
|
|
|
2019-03-27 13:12:20 +00:00
|
|
|
buildInputs = buildDeps ++ tarballDeps ++ perlDeps ++ [ pkgs.rustfmt ];
|
2016-11-28 15:13:23 +00:00
|
|
|
|
2017-05-15 15:30:33 +00:00
|
|
|
inherit configureFlags;
|
2016-11-28 15:13:23 +00:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
installFlags = "sysconfdir=$(out)/etc";
|
|
|
|
|
|
|
|
shellHook =
|
|
|
|
''
|
2017-04-26 15:04:45 +00:00
|
|
|
export prefix=$(pwd)/inst
|
2017-04-28 14:53:56 +00:00
|
|
|
configureFlags+=" --prefix=$prefix"
|
2017-04-26 15:04:45 +00:00
|
|
|
PKG_CONFIG_PATH=$prefix/lib/pkgconfig:$PKG_CONFIG_PATH
|
|
|
|
PATH=$prefix/bin:$PATH
|
2016-11-28 15:13:23 +00:00
|
|
|
'';
|
|
|
|
}
|