nix-super/shell.nix

29 lines
707 B
Nix
Raw Normal View History

{ useClang ? true
, nixpkgs ? builtins.fetchTarball https://github.com/NixOS/nixpkgs-channels/archive/nixos-19.03.tar.gz
}:
2017-01-24 11:53:18 +02:00
2019-05-29 17:30:00 +03:00
with import nixpkgs { system = builtins.currentSystem or "x86_64-linux"; };
2016-11-28 17:13:23 +02:00
with import ./release-common.nix { inherit pkgs; };
2017-01-24 11:53:18 +02:00
(if useClang then clangStdenv else stdenv).mkDerivation {
2016-11-28 17:13:23 +02:00
name = "nix";
buildInputs = buildDeps ++ tarballDeps ++ perlDeps;
2016-11-28 17:13:23 +02:00
inherit configureFlags;
2016-11-28 17:13:23 +02:00
enableParallelBuilding = true;
installFlags = "sysconfdir=$(out)/etc";
shellHook =
''
export prefix=$(pwd)/inst
2017-04-28 17:53:56 +03:00
configureFlags+=" --prefix=$prefix"
PKG_CONFIG_PATH=$prefix/lib/pkgconfig:$PKG_CONFIG_PATH
PATH=$prefix/bin:$PATH
unset PYTHONPATH
2016-11-28 17:13:23 +02:00
'';
}