From adc2a8f648d4111987be7b83b23b99717cce1a30 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Wed, 21 Dec 2016 19:30:06 -0500 Subject: [PATCH] Fix go_1_6 test In a user namespace, sending credentials for an unmapped user return EINVAL instead of EPERM. So handle that case. --- pkgs/development/compilers/go/1.6.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/compilers/go/1.6.nix b/pkgs/development/compilers/go/1.6.nix index db6573417bf4..ce68b007eaab 100644 --- a/pkgs/development/compilers/go/1.6.nix +++ b/pkgs/development/compilers/go/1.6.nix @@ -110,6 +110,7 @@ stdenv.mkDerivation rec { patches = [ ./remove-tools-1.5.patch + ./creds-test.patch ]; GOOS = if stdenv.isDarwin then "darwin" else "linux";