Skip to content

Commit 88604ee

Browse files
committedSep 15, 2017
nixUnstable: 1.12pre5511_c94f3d55 -> 1.12pre5619_346aeee1
(cherry picked from commit b86fd34)
1 parent 2667bfb commit 88604ee

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed
 

Diff for: ‎pkgs/tools/package-management/nix/default.nix

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{ lib, stdenv, fetchurl, fetchFromGitHub, perl, curl, bzip2, sqlite, openssl ? null, xz
22
, pkgconfig, boehmgc, perlPackages, libsodium, aws-sdk-cpp, brotli, readline
33
, autoreconfHook, autoconf-archive, bison, flex, libxml2, libxslt, docbook5, docbook5_xsl
4-
, libseccomp, busybox
4+
, libseccomp, busybox, nlohmann_json
55
, storeDir ? "/nix/store"
66
, stateDir ? "/nix/var"
77
}:
@@ -45,7 +45,7 @@ let
4545

4646
buildInputs = [ curl openssl sqlite xz ]
4747
++ 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
4949
++ lib.optional stdenv.isLinux libseccomp
5050
++ lib.optional ((stdenv.isLinux || stdenv.isDarwin) && is112)
5151
(aws-sdk-cpp.override {
@@ -163,12 +163,12 @@ in rec {
163163

164164
nixUnstable = (lib.lowPrio (common rec {
165165
name = "nix-1.12${suffix}";
166-
suffix = "pre5511_c94f3d55";
166+
suffix = "pre5619_346aeee1";
167167
src = fetchFromGitHub {
168168
owner = "NixOS";
169169
repo = "nix";
170-
rev = "c94f3d5575d7af5403274d1e9e2f3c9d72989751";
171-
sha256 = "1akfzzm4f07wj6l7za916xv5rnh71pk3vl8dphgradjfqb37bv18";
170+
rev = "346aeee1cb21b5cab5ddc3e8658c88321f513761";
171+
sha256 = "0lyrs0mqnh89w1nzrqpxvnh7bdjpg8j22xaidql47f1nwbblmn3f";
172172
};
173173
fromGit = true;
174174
})) // { perl-bindings = perl-bindings { nix = nixUnstable; }; };

0 commit comments

Comments
 (0)
Please sign in to comment.