Skip to content

Commit 0bffe03

Browse files
committedJun 12, 2017
nix: 1.11.9 -> 1.11.10
1 parent b733a34 commit 0bffe03

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed
 

Diff for: ‎nixos/modules/installer/tools/nix-fallback-paths.nix

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
x86_64-linux = "/nix/store/71im965h634iy99zsmlncw6qhx5jcclx-nix-1.11.9";
3-
i686-linux = "/nix/store/cgvavixkayc36l6kl92i8mxr6k0p2yhy-nix-1.11.9";
4-
x86_64-darwin = "/nix/store/w1c96v5yxvdmq4nvqlxjvg6kp7xa2lag-nix-1.11.9";
2+
x86_64-linux = "/nix/store/qiiwjyc338xigks5wqyxn0nnqiwy7xav-nix-1.11.10";
3+
i686-linux = "/nix/store/30fi96qqggjs51c5085y3fiws0a3wdcl-nix-1.11.10";
4+
x86_64-darwin = "/nix/store/zs6msqwjgjr9v9kbs5s0sap7vhdw692z-nix-1.11.10";
55
}

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ let
3939
buildInputs = [ curl openssl sqlite xz ]
4040
++ lib.optional (stdenv.isLinux || stdenv.isDarwin) libsodium
4141
++ lib.optionals fromGit [ brotli readline ] # Since 1.12
42-
++ lib.optional (stdenv.isLinux && is112) libseccomp
42+
++ lib.optional stdenv.isLinux libseccomp
4343
++ lib.optional ((stdenv.isLinux || stdenv.isDarwin) && is112)
4444
(aws-sdk-cpp.override {
4545
apis = ["s3"];
@@ -148,10 +148,10 @@ in rec {
148148
nix = nixStable;
149149

150150
nixStable = (common rec {
151-
name = "nix-1.11.9";
151+
name = "nix-1.11.10";
152152
src = fetchurl {
153153
url = "http://nixos.org/releases/nix/${name}/${name}.tar.xz";
154-
sha256 = "0e943e277f37843f9196b0293cc31d828613ad7a328ee77cd5be01935dc6e7e1";
154+
sha256 = "b29a458c2b803bcc07d8b58cd016ca6ad0788a73ca74edaeaebc588961322467";
155155
};
156156
}) // { perl-bindings = nixStable; };
157157

1 commit comments

Comments
 (1)

vcunat commented on Jun 13, 2017

@vcunat
Member

The nix tests got broken on Hydra+Darwin:

running test tests/simple.sh
++ nix-instantiate simple.nix
warning: you did not specify ‘--add-root’; the result might be removed by the garbage collector
+ drvPath=/private/tmp/nix-build-nix-1.11.10.drv-0/nix-1.11.10/tests/test-tmp/store/yfq3g093x67avb6mhfa11jlajl0fd1sf-simple.drv
++ nix-store -q --binding system /private/tmp/nix-build-nix-1.11.10.drv-0/nix-1.11.10/tests/test-tmp/store/yfq3g093x67avb6mhfa11jlajl0fd1sf-simple.drv
+ test x86_64-darwin = x86_64-darwin
+ echo 'derivation is /private/tmp/nix-build-nix-1.11.10.drv-0/nix-1.11.10/tests/test-tmp/store/yfq3g093x67avb6mhfa11jlajl0fd1sf-simple.drv'
derivation is /private/tmp/nix-build-nix-1.11.10.drv-0/nix-1.11.10/tests/test-tmp/store/yfq3g093x67avb6mhfa11jlajl0fd1sf-simple.drv
++ nix-store -rvv /private/tmp/nix-build-nix-1.11.10.drv-0/nix-1.11.10/tests/test-tmp/store/yfq3g093x67avb6mhfa11jlajl0fd1sf-simple.drv
these derivations will be built:
  /private/tmp/nix-build-nix-1.11.10.drv-0/nix-1.11.10/tests/test-tmp/store/yfq3g093x67avb6mhfa11jlajl0fd1sf-simple.drv
building path(s) ‘/private/tmp/nix-build-nix-1.11.10.drv-0/nix-1.11.10/tests/test-tmp/store/0gsvb1kfgandpfpvdxa1yraskhnl7z03-simple’
|   executing builder ‘/nix/store/w37k77yaagi7kdyiy263cma1bnrxz0ry-bash-4.4-p12/bin/bash’
sandbox-exec: sandbox_apply_container: Operation not permitted
builder for ‘/private/tmp/nix-build-nix-1.11.10.drv-0/nix-1.11.10/tests/test-tmp/store/yfq3g093x67avb6mhfa11jlajl0fd1sf-simple.drv’ failed with exit code 71
error: build of ‘/private/tmp/nix-build-nix-1.11.10.drv-0/nix-1.11.10/tests/test-tmp/store/yfq3g093x67avb6mhfa11jlajl0fd1sf-simple.drv’ failed
+ outPath=
FAIL: tests/simple.sh
Please sign in to comment.