lix/shell.nix

28 lines
685 B
Nix
Raw Normal View History

{ useClang ? false
, nixpkgs ? builtins.fetchTarball https://github.com/NixOS/nixpkgs-channels/archive/nixos-19.03.tar.gz
}:
2017-01-24 09:53:18 +00:00
2019-05-29 14:30:00 +00:00
with import nixpkgs { system = builtins.currentSystem or "x86_64-linux"; };
2016-11-28 15:13:23 +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";
buildInputs = buildDeps ++ tarballDeps ++ perlDeps;
2016-11-28 15:13:23 +00:00
inherit configureFlags;
2016-11-28 15:13:23 +00:00
enableParallelBuilding = true;
installFlags = "sysconfdir=$(out)/etc";
shellHook =
''
export prefix=$(pwd)/inst
2017-04-28 14:53:56 +00:00
configureFlags+=" --prefix=$prefix"
PKG_CONFIG_PATH=$prefix/lib/pkgconfig:$PKG_CONFIG_PATH
PATH=$prefix/bin:$PATH
2016-11-28 15:13:23 +00:00
'';
}