From 6e0c30afbfc22b5d441731233447e1982faaaa04 Mon Sep 17 00:00:00 2001 From: Brian McKenna Date: Tue, 20 Jan 2015 19:42:42 -0700 Subject: [PATCH] Fix Docker SQLite and setgid problems Docker doesn't support Go 1.4 yet. It compiles but it causes multiple bugs. We should use Go 1.3 to build until the next release. This seems to fix the following two problems I've been having: https://github.com/docker/docker/issues/9649 https://bugzilla.redhat.com/show_bug.cgi?id=1169151 --- pkgs/top-level/all-packages.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e2cdbf6b0600..b6688d687f01 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -9594,7 +9594,9 @@ let dmtx-utils = callPackage (import ../tools/graphics/dmtx-utils) { }; - docker = callPackage ../applications/virtualization/docker { }; + docker = callPackage ../applications/virtualization/docker { + go = go_1_3; + }; doodle = callPackage ../applications/search/doodle { };