|
1 | 1 | { lib, stdenv, fetchurl, fetchFromGitHub, perl, curl, bzip2, sqlite, openssl ? null, xz
|
2 | 2 | , pkgconfig, boehmgc, perlPackages, libsodium, aws-sdk-cpp, brotli, readline
|
3 | 3 | , autoreconfHook, autoconf-archive, bison, flex, libxml2, libxslt, docbook5, docbook5_xsl
|
4 |
| -, libseccomp, busybox |
| 4 | +, libseccomp, busybox, nlohmann_json |
5 | 5 | , storeDir ? "/nix/store"
|
6 | 6 | , stateDir ? "/nix/var"
|
7 | 7 | }:
|
|
45 | 45 |
|
46 | 46 | buildInputs = [ curl openssl sqlite xz ]
|
47 | 47 | ++ lib.optional (stdenv.isLinux || stdenv.isDarwin) libsodium
|
48 |
| - ++ lib.optionals fromGit [ brotli readline ] # Since 1.12 |
| 48 | + ++ lib.optionals fromGit [ brotli readline nlohmann_json ] # Since 1.12 |
49 | 49 | ++ lib.optional stdenv.isLinux libseccomp
|
50 | 50 | ++ lib.optional ((stdenv.isLinux || stdenv.isDarwin) && is112)
|
51 | 51 | (aws-sdk-cpp.override {
|
@@ -163,12 +163,12 @@ in rec {
|
163 | 163 |
|
164 | 164 | nixUnstable = (lib.lowPrio (common rec {
|
165 | 165 | name = "nix-1.12${suffix}";
|
166 |
| - suffix = "pre5511_c94f3d55"; |
| 166 | + suffix = "pre5619_346aeee1"; |
167 | 167 | src = fetchFromGitHub {
|
168 | 168 | owner = "NixOS";
|
169 | 169 | repo = "nix";
|
170 |
| - rev = "c94f3d5575d7af5403274d1e9e2f3c9d72989751"; |
171 |
| - sha256 = "1akfzzm4f07wj6l7za916xv5rnh71pk3vl8dphgradjfqb37bv18"; |
| 170 | + rev = "346aeee1cb21b5cab5ddc3e8658c88321f513761"; |
| 171 | + sha256 = "0lyrs0mqnh89w1nzrqpxvnh7bdjpg8j22xaidql47f1nwbblmn3f"; |
172 | 172 | };
|
173 | 173 | fromGit = true;
|
174 | 174 | })) // { perl-bindings = perl-bindings { nix = nixUnstable; }; };
|
|
0 commit comments