Nix/shell.nix

26 lines
644 B
Nix
Raw Normal View History

2017-01-24 10:53:18 +01:00
{ useClang ? false }:
2020-01-13 21:11:56 +01:00
with import (builtins.fetchTarball https://github.com/NixOS/nixpkgs/archive/nixos-19.09.tar.gz) {};
2016-11-28 16:13:23 +01:00
with import ./release-common.nix { inherit pkgs; };
2017-01-24 10:53:18 +01:00
(if useClang then clangStdenv else stdenv).mkDerivation {
2016-11-28 16:13:23 +01:00
name = "nix";
2020-02-15 21:48:28 +01:00
buildInputs = buildDeps ++ propagatedDeps ++ tarballDeps ++ perlDeps ++ [ pkgs.rustfmt ];
2016-11-28 16:13:23 +01:00
inherit configureFlags;
2016-11-28 16:13:23 +01:00
enableParallelBuilding = true;
installFlags = "sysconfdir=$(out)/etc";
shellHook =
''
export prefix=$(pwd)/inst
2017-04-28 16:53:56 +02:00
configureFlags+=" --prefix=$prefix"
PKG_CONFIG_PATH=$prefix/lib/pkgconfig:$PKG_CONFIG_PATH
PATH=$prefix/bin:$PATH
2016-11-28 16:13:23 +01:00
'';
}