1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-19 23:03:53 -04:00
nix/shell.nix

41 lines
838 B
Nix
Raw Normal View History

2017-01-24 04:53:18 -05:00
{ useClang ? false }:
2016-11-28 10:13:23 -05:00
with import <nixpkgs> {};
with import ./release-common.nix { inherit pkgs; };
2017-01-24 04:53:18 -05:00
(if useClang then clangStdenv else stdenv).mkDerivation {
2016-11-28 10:13:23 -05:00
name = "nix";
buildInputs =
[ curl bison flex libxml2 libxslt
bzip2 xz brotli
2016-11-28 10:13:23 -05:00
pkgconfig sqlite libsodium boehmgc
docbook5 docbook5_xsl
autoconf-archive
(aws-sdk-cpp.override {
apis = ["s3"];
customMemoryManagement = false;
})
autoreconfHook
# For nix-perl
perl
perlPackages.DBDSQLite
2016-11-28 10:13:23 -05:00
];
inherit configureFlags;
2016-11-28 10:13:23 -05:00
enableParallelBuilding = true;
installFlags = "sysconfdir=$(out)/etc";
shellHook =
''
export prefix=$(pwd)/inst
2017-04-28 10:53:56 -04:00
configureFlags+=" --prefix=$prefix"
PKG_CONFIG_PATH=$prefix/lib/pkgconfig:$PKG_CONFIG_PATH
PATH=$prefix/bin:$PATH
2016-11-28 10:13:23 -05:00
'';
}