lix/shell.nix

43 lines
849 B
Nix
Raw Normal View History

2017-01-24 09:53:18 +00:00
{ useClang ? false }:
2016-11-28 15:13:23 +00:00
with import <nixpkgs> {};
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 =
[ curl bison flex libxml2 libxslt
bzip2 xz brotli
2016-11-28 15:13:23 +00:00
pkgconfig sqlite libsodium boehmgc
docbook5 docbook5_xsl
autoconf-archive
(aws-sdk-cpp.override {
apis = ["s3"];
customMemoryManagement = false;
})
autoreconfHook
2017-04-25 16:48:40 +00:00
readline
# For nix-perl
perl
perlPackages.DBDSQLite
2016-11-28 15:13:23 +00:00
];
configureFlags =
[ "--disable-init-state"
"--enable-gc"
];
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
'';
}