summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/virtualization/docker/default.nix
diff options
context:
space:
mode:
authorbetaboon <betaboon@0x80.ninja>2020-07-03 09:19:24 +0200
committerbetaboon <betaboon@0x80.ninja>2020-07-03 09:21:26 +0200
commit493f219f9509320cb07efb9235ab7572a1c1103b (patch)
tree5407930bf386f9fc881f4469073125ca847b1fcb /pkgs/applications/virtualization/docker/default.nix
parentb9ac86e7520adee0f9d18a700f8838fca9fe637a (diff)
docker: use buildGoPackage
Diffstat (limited to 'pkgs/applications/virtualization/docker/default.nix')
-rw-r--r--pkgs/applications/virtualization/docker/default.nix33
1 files changed, 23 insertions, 10 deletions
diff --git a/pkgs/applications/virtualization/docker/default.nix b/pkgs/applications/virtualization/docker/default.nix
index e9fc96986a8e..6b76ea24e3da 100644
--- a/pkgs/applications/virtualization/docker/default.nix
+++ b/pkgs/applications/virtualization/docker/default.nix
@@ -1,4 +1,5 @@
-{ stdenv, lib, fetchFromGitHub, makeWrapper, removeReferencesTo, installShellFiles, pkgconfig
+{ stdenv, lib, fetchFromGitHub, fetchpatch, buildGoPackage
+, makeWrapper, removeReferencesTo, installShellFiles, pkgconfig
, go-md2man, go, containerd, runc, docker-proxy, tini, libtool
, sqlite, iproute, lvm2, systemd
, btrfs-progs, iptables, e2fsprogs, xz, utillinux, xfsprogs, git
@@ -56,7 +57,7 @@ rec {
NIX_CFLAGS_COMPILE = "-DMINIMAL=ON";
});
in
- stdenv.mkDerivation ((optionalAttrs (stdenv.isLinux) {
+ buildGoPackage ((optionalAttrs (stdenv.isLinux) {
inherit docker-runc docker-containerd docker-proxy docker-tini;
@@ -66,7 +67,7 @@ rec {
++ optional (lvm2 == null) "exclude_graphdriver_devicemapper"
++ optional (libseccomp != null) "seccomp";
- }) // {
+ }) // rec {
inherit version rev;
name = "docker-${version}";
@@ -78,9 +79,19 @@ rec {
sha256 = sha256;
};
- nativeBuildInputs = [ installShellFiles pkgconfig ];
+ patches = [
+ # Replace hard-coded cross-compiler with $CC
+ (fetchpatch {
+ url = https://github.com/docker/docker-ce/commit/2fdfb4404ab811cb00227a3de111437b829e55cf.patch;
+ sha256 = "1af20bzakhpfhaixc29qnl9iml9255xdinxdnaqp4an0n1xa686a";
+ })
+ ];
+
+ goPackagePath = "github.com/docker/docker-ce";
+
+ nativeBuildInputs = [ pkgconfig go-md2man go libtool removeReferencesTo installShellFiles ];
buildInputs = [
- makeWrapper removeReferencesTo go-md2man go libtool
+ makeWrapper
] ++ optionals (stdenv.isLinux) [
sqlite lvm2 btrfs-progs systemd libseccomp
];
@@ -91,7 +102,7 @@ rec {
export GOCACHE="$TMPDIR/go-cache"
'' + (optionalString (stdenv.isLinux) ''
# build engine
- cd ./components/engine
+ cd ./go/src/${goPackagePath}/components/engine
export AUTO_GOPATH=1
export DOCKER_GITCOMMIT="${rev}"
export VERSION="${version}"
@@ -99,7 +110,7 @@ rec {
cd -
'') + ''
# build cli
- cd ./components/cli
+ cd ./go/src/${goPackagePath}/components/cli
# Mimic AUTO_GOPATH
mkdir -p .gopath/src/github.com/docker/
ln -sf $PWD .gopath/src/github.com/docker/cli
@@ -113,7 +124,7 @@ rec {
'';
# systemd 230 no longer has libsystemd-journal as a separate entity from libsystemd
- patchPhase = ''
+ postPatch = ''
substituteInPlace ./components/cli/scripts/build/.variables --replace "set -eu" ""
'' + optionalString (stdenv.isLinux) ''
patchShebangs .
@@ -126,6 +137,7 @@ rec {
extraPath = optionals (stdenv.isLinux) (makeBinPath [ iproute iptables e2fsprogs xz xfsprogs procps utillinux git ]);
installPhase = optionalString (stdenv.isLinux) ''
+ cd ./go/src/${goPackagePath}
install -Dm755 ./components/engine/bundles/dynbinary-daemon/dockerd $out/libexec/docker/dockerd
makeWrapper $out/libexec/docker/dockerd $out/bin/dockerd \
@@ -152,13 +164,14 @@ rec {
installShellCompletion --zsh ./components/cli/contrib/completion/zsh/_docker
# Include contributed man pages (cli)
+ cd ./components/cli
+ '' + lib.optionalString (stdenv.hostPlatform == stdenv.buildPlatform) ''
# Generate man pages from cobra commands
echo "Generate man pages from cobra"
- cd ./components/cli
mkdir -p ./man/man1
go build -o ./gen-manpages github.com/docker/cli/man
./gen-manpages --root . --target ./man/man1
-
+ '' + ''
# Generate legacy pages from markdown
echo "Generate legacy manpages"
./man/md2man-all.sh -q