about summary refs log tree commit diff
path: root/shell.nix
blob: dd448410554e3ec1b2888edf1760f40d94c4d461 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
with import <nixpkgs> {};

stdenv.mkDerivation {
  name = "nix";

  buildInputs =
    [ curl bison flex perl libxml2 libxslt bzip2 xz
      pkgconfig sqlite libsodium boehmgc
      docbook5 docbook5_xsl
      autoconf-archive
      (aws-sdk-cpp.override {
        apis = ["s3"];
        customMemoryManagement = false;
      })
      autoreconfHook
      perlPackages.DBDSQLite
    ];

  configureFlags =
    [ "--disable-init-state"
      "--enable-gc"
      "--with-dbi=${perlPackages.DBI}/${perl.libPrefix}"
      "--with-dbd-sqlite=${perlPackages.DBDSQLite}/${perl.libPrefix}"
    ];

  enableParallelBuilding = true;

  installFlags = "sysconfdir=$(out)/etc";

  shellHook =
    ''
      configureFlags+=" --prefix=$(pwd)/inst"
    '';
}