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
This commit is contained in:
parent
524881e4a1
commit
6e0c30afbf
1 changed files with 3 additions and 1 deletions
|
@ -9594,7 +9594,9 @@ let
|
||||||
dmtx-utils = callPackage (import ../tools/graphics/dmtx-utils) {
|
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 { };
|
doodle = callPackage ../applications/search/doodle { };
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue