nix-gh/shell.nix

36 lines
688 B
Nix
Raw Normal View History

2017-01-24 10:53:18 +01:00
{ useClang ? false }:
2016-11-28 16:13:23 +01:00
with import <nixpkgs> {};
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";
buildInputs =
[ curl bison flex perl libxml2 libxslt
bzip2 xz brotli
2016-11-28 16:13:23 +01:00
pkgconfig sqlite libsodium boehmgc
docbook5 docbook5_xsl
autoconf-archive
(aws-sdk-cpp.override {
apis = ["s3"];
customMemoryManagement = false;
})
autoreconfHook
2016-12-11 18:13:18 +01:00
perlPackages.DBDSQLite
2016-11-28 16:13:23 +01:00
];
configureFlags =
[ "--disable-init-state"
"--enable-gc"
];
enableParallelBuilding = true;
installFlags = "sysconfdir=$(out)/etc";
shellHook =
''
configureFlags+=" --prefix=$(pwd)/inst"
'';
}