Merge pull request #92140 from betaboon/docker-cross-compile-fixes

Docker cross compile fixes v2
This commit is contained in:
Frederik Rietdijk 2020-08-24 12:09:27 +02:00 committed by GitHub
commit 6d122d67fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 27 additions and 12 deletions

View File

@ -18,6 +18,6 @@ buildGoPackage rec {
license = licenses.asl20; license = licenses.asl20;
homepage = "https://github.com/containernetworking/cni"; homepage = "https://github.com/containernetworking/cni";
maintainers = with maintainers; [ offline vdemeester ]; maintainers = with maintainers; [ offline vdemeester ];
platforms = [ "x86_64-linux" ]; platforms = [ "x86_64-linux" "aarch64-linux" ];
}; };
} }

View File

@ -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 , go-md2man, go, containerd, runc, docker-proxy, tini, libtool
, sqlite, iproute, lvm2, systemd , sqlite, iproute, lvm2, systemd
, btrfs-progs, iptables, e2fsprogs, xz, utillinux, xfsprogs, git , btrfs-progs, iptables, e2fsprogs, xz, utillinux, xfsprogs, git
@ -56,7 +57,7 @@ rec {
NIX_CFLAGS_COMPILE = "-DMINIMAL=ON"; NIX_CFLAGS_COMPILE = "-DMINIMAL=ON";
}); });
in in
stdenv.mkDerivation ((optionalAttrs (stdenv.isLinux) { buildGoPackage ((optionalAttrs (stdenv.isLinux) {
inherit docker-runc docker-containerd docker-proxy docker-tini; inherit docker-runc docker-containerd docker-proxy docker-tini;
@ -66,7 +67,7 @@ rec {
++ optional (lvm2 == null) "exclude_graphdriver_devicemapper" ++ optional (lvm2 == null) "exclude_graphdriver_devicemapper"
++ optional (libseccomp != null) "seccomp"; ++ optional (libseccomp != null) "seccomp";
}) // { }) // rec {
inherit version rev; inherit version rev;
name = "docker-${version}"; name = "docker-${version}";
@ -78,9 +79,19 @@ rec {
sha256 = sha256; 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 = [ buildInputs = [
makeWrapper removeReferencesTo go-md2man go libtool makeWrapper
] ++ optionals (stdenv.isLinux) [ ] ++ optionals (stdenv.isLinux) [
sqlite lvm2 btrfs-progs systemd libseccomp sqlite lvm2 btrfs-progs systemd libseccomp
]; ];
@ -91,7 +102,7 @@ rec {
export GOCACHE="$TMPDIR/go-cache" export GOCACHE="$TMPDIR/go-cache"
'' + (optionalString (stdenv.isLinux) '' '' + (optionalString (stdenv.isLinux) ''
# build engine # build engine
cd ./components/engine cd ./go/src/${goPackagePath}/components/engine
export AUTO_GOPATH=1 export AUTO_GOPATH=1
export DOCKER_GITCOMMIT="${rev}" export DOCKER_GITCOMMIT="${rev}"
export VERSION="${version}" export VERSION="${version}"
@ -99,7 +110,7 @@ rec {
cd - cd -
'') + '' '') + ''
# build cli # build cli
cd ./components/cli cd ./go/src/${goPackagePath}/components/cli
# Mimic AUTO_GOPATH # Mimic AUTO_GOPATH
mkdir -p .gopath/src/github.com/docker/ mkdir -p .gopath/src/github.com/docker/
ln -sf $PWD .gopath/src/github.com/docker/cli 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 # systemd 230 no longer has libsystemd-journal as a separate entity from libsystemd
patchPhase = '' postPatch = ''
substituteInPlace ./components/cli/scripts/build/.variables --replace "set -eu" "" substituteInPlace ./components/cli/scripts/build/.variables --replace "set -eu" ""
'' + optionalString (stdenv.isLinux) '' '' + optionalString (stdenv.isLinux) ''
patchShebangs . patchShebangs .
@ -126,6 +137,7 @@ rec {
extraPath = optionals (stdenv.isLinux) (makeBinPath [ iproute iptables e2fsprogs xz xfsprogs procps utillinux git ]); extraPath = optionals (stdenv.isLinux) (makeBinPath [ iproute iptables e2fsprogs xz xfsprogs procps utillinux git ]);
installPhase = optionalString (stdenv.isLinux) '' installPhase = optionalString (stdenv.isLinux) ''
cd ./go/src/${goPackagePath}
install -Dm755 ./components/engine/bundles/dynbinary-daemon/dockerd $out/libexec/docker/dockerd install -Dm755 ./components/engine/bundles/dynbinary-daemon/dockerd $out/libexec/docker/dockerd
makeWrapper $out/libexec/docker/dockerd $out/bin/dockerd \ makeWrapper $out/libexec/docker/dockerd $out/bin/dockerd \
@ -152,13 +164,14 @@ rec {
installShellCompletion --zsh ./components/cli/contrib/completion/zsh/_docker installShellCompletion --zsh ./components/cli/contrib/completion/zsh/_docker
# Include contributed man pages (cli) # Include contributed man pages (cli)
cd ./components/cli
'' + lib.optionalString (stdenv.hostPlatform == stdenv.buildPlatform) ''
# Generate man pages from cobra commands # Generate man pages from cobra commands
echo "Generate man pages from cobra" echo "Generate man pages from cobra"
cd ./components/cli
mkdir -p ./man/man1 mkdir -p ./man/man1
go build -o ./gen-manpages github.com/docker/cli/man go build -o ./gen-manpages github.com/docker/cli/man
./gen-manpages --root . --target ./man/man1 ./gen-manpages --root . --target ./man/man1
'' + ''
# Generate legacy pages from markdown # Generate legacy pages from markdown
echo "Generate legacy manpages" echo "Generate legacy manpages"
./man/md2man-all.sh -q ./man/md2man-all.sh -q

View File

@ -15,7 +15,8 @@ stdenv.mkDerivation rec {
NIX_CFLAGS_COMPILE = "-DPR_SET_CHILD_SUBREAPER=36 -DPR_GET_CHILD_SUBREAPER=37"; NIX_CFLAGS_COMPILE = "-DPR_SET_CHILD_SUBREAPER=36 -DPR_GET_CHILD_SUBREAPER=37";
buildInputs = [ cmake glibc glibc.static ]; nativeBuildInputs = [ cmake ];
buildInputs = [ glibc glibc.static ];
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "A tiny but valid init for containers"; description = "A tiny but valid init for containers";

View File

@ -212,6 +212,7 @@ let
preFixup = preFixup + '' preFixup = preFixup + ''
find $out/bin -type f -exec ${removeExpr removeReferences} '{}' + || true find $out/bin -type f -exec ${removeExpr removeReferences} '{}' + || true
find $out/libexec -type f -exec ${removeExpr removeReferences} '{}' + || true
''; '';
strictDeps = true; strictDeps = true;