2017-01-24 09:53:18 +00:00
|
|
|
{ useClang ? false }:
|
|
|
|
|
2016-11-28 15:13:23 +00:00
|
|
|
with import <nixpkgs> {};
|
|
|
|
|
2017-05-15 15:30:33 +00:00
|
|
|
with import ./release-common.nix { inherit pkgs; };
|
|
|
|
|
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 =
|
2017-04-10 15:22:52 +00:00
|
|
|
[ curl bison flex libxml2 libxslt
|
2017-03-13 13:40:15 +00:00
|
|
|
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-08-21 10:01:21 +00:00
|
|
|
nlohmann_json
|
2017-04-26 15:04:45 +00:00
|
|
|
|
|
|
|
# For nix-perl
|
|
|
|
perl
|
|
|
|
perlPackages.DBDSQLite
|
2017-11-01 15:32:53 +00:00
|
|
|
|
|
|
|
# Tests
|
|
|
|
mercurial
|
2017-05-29 09:34:24 +00:00
|
|
|
]
|
|
|
|
++ lib.optional stdenv.isLinux libseccomp;
|
2016-11-28 15:13:23 +00:00
|
|
|
|
2017-05-15 15:30:33 +00:00
|
|
|
inherit configureFlags;
|
2016-11-28 15:13:23 +00:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
installFlags = "sysconfdir=$(out)/etc";
|
|
|
|
|
|
|
|
shellHook =
|
|
|
|
''
|
2017-04-26 15:04:45 +00:00
|
|
|
export prefix=$(pwd)/inst
|
2017-04-28 14:53:56 +00:00
|
|
|
configureFlags+=" --prefix=$prefix"
|
2017-04-26 15:04:45 +00:00
|
|
|
PKG_CONFIG_PATH=$prefix/lib/pkgconfig:$PKG_CONFIG_PATH
|
|
|
|
PATH=$prefix/bin:$PATH
|
2016-11-28 15:13:23 +00:00
|
|
|
'';
|
|
|
|
}
|