nixpkgs/pkgs/applications/virtualization/docker/default.nix

212 lines
7.2 KiB
Nix
Raw Normal View History

2017-03-11 14:08:04 +00:00
{ stdenv, lib, fetchFromGitHub, makeWrapper, removeReferencesTo, pkgconfig
, go-md2man, go, containerd, runc, docker-proxy, tini, libtool
, sqlite, iproute, lvm2, systemd
2016-09-10 10:45:01 +00:00
, btrfs-progs, iptables, e2fsprogs, xz, utillinux, xfsprogs
2017-07-22 18:27:44 +00:00
, procps, libseccomp
2015-11-16 15:17:32 +00:00
}:
2014-01-24 13:39:43 +00:00
2016-09-10 10:45:01 +00:00
with lib;
2015-11-16 15:17:32 +00:00
2017-04-04 12:03:55 +00:00
rec {
dockerGen = {
version, rev, sha256
, runcRev, runcSha256
, containerdRev, containerdSha256
, tiniRev, tiniSha256
2017-11-16 11:48:28 +00:00
} :
let
2017-04-04 12:03:55 +00:00
docker-runc = runc.overrideAttrs (oldAttrs: rec {
name = "docker-runc";
src = fetchFromGitHub {
owner = "docker";
repo = "runc";
rev = runcRev;
sha256 = runcSha256;
};
# docker/runc already include these patches / are not applicable
patches = [];
});
2017-11-16 11:48:28 +00:00
docker-containerd = (containerd.override { inherit go; }).overrideAttrs (oldAttrs: rec {
2017-04-04 12:03:55 +00:00
name = "docker-containerd";
src = fetchFromGitHub {
owner = "docker";
repo = "containerd";
rev = containerdRev;
sha256 = containerdSha256;
};
2017-09-27 12:16:42 +00:00
2017-11-21 14:23:48 +00:00
hardeningDisable = [ "fortify" ];
buildInputs = [ removeReferencesTo go btrfs-progs ];
2017-04-04 12:03:55 +00:00
});
2017-11-16 11:48:28 +00:00
2017-04-04 12:03:55 +00:00
docker-tini = tini.overrideAttrs (oldAttrs: rec {
name = "docker-init";
src = fetchFromGitHub {
owner = "krallin";
repo = "tini";
rev = tiniRev;
sha256 = tiniSha256;
};
# Do not remove static from make files as we want a static binary
patchPhase = ''
'';
NIX_CFLAGS_COMPILE = [
"-DMINIMAL=ON"
];
});
2017-11-16 11:48:28 +00:00
in
stdenv.mkDerivation ((optionalAttrs (stdenv.isLinux) rec {
inherit docker-runc docker-containerd docker-proxy docker-tini;
2017-11-16 11:48:28 +00:00
DOCKER_BUILDTAGS = []
++ optional (systemd != null) [ "journald" ]
++ optional (btrfs-progs == null) "exclude_graphdriver_btrfs"
++ optional (lvm2 == null) "exclude_graphdriver_devicemapper"
2017-11-16 11:48:28 +00:00
++ optional (libseccomp != null) "seccomp";
}) // rec {
inherit version rev;
name = "docker-${version}";
src = fetchFromGitHub {
owner = "docker";
repo = "docker-ce";
rev = "v${version}";
sha256 = sha256;
};
2017-04-04 12:03:55 +00:00
2017-07-22 18:27:44 +00:00
# Optimizations break compilation of libseccomp c bindings
hardeningDisable = [ "fortify" ];
nativeBuildInputs = [ pkgconfig ];
2017-04-04 12:03:55 +00:00
buildInputs = [
2017-11-16 11:48:28 +00:00
makeWrapper removeReferencesTo go-md2man go libtool
] ++ optionals (stdenv.isLinux) [
sqlite lvm2 btrfs-progs systemd libseccomp
2017-04-04 12:03:55 +00:00
];
dontStrip = true;
2017-11-16 11:48:28 +00:00
buildPhase = (optionalString (stdenv.isLinux) ''
# build engine
cd ./components/engine
2017-04-04 12:03:55 +00:00
export AUTO_GOPATH=1
export DOCKER_GITCOMMIT="${rev}"
2018-01-02 12:33:04 +00:00
export VERSION="${version}"
2017-04-04 12:03:55 +00:00
./hack/make.sh dynbinary
cd -
2017-11-16 11:48:28 +00:00
'') + ''
# build cli
cd ./components/cli
# Mimic AUTO_GOPATH
mkdir -p .gopath/src/github.com/docker/
ln -sf $PWD .gopath/src/github.com/docker/cli
export GOPATH="$PWD/.gopath:$GOPATH"
export GITCOMMIT="${rev}"
export VERSION="${version}"
source ./scripts/build/.variables
export CGO_ENABLED=1
go build -tags pkcs11 --ldflags "$LDFLAGS" github.com/docker/cli/cmd/docker
cd -
2017-04-04 12:03:55 +00:00
'';
# systemd 230 no longer has libsystemd-journal as a separate entity from libsystemd
patchPhase = ''
2017-11-16 11:48:28 +00:00
substituteInPlace ./components/cli/scripts/build/.variables --replace "set -eu" ""
'' + optionalString (stdenv.isLinux) ''
patchShebangs .
substituteInPlace ./components/engine/hack/make.sh --replace libsystemd-journal libsystemd
substituteInPlace ./components/engine/daemon/logger/journald/read.go --replace libsystemd-journal libsystemd
2017-11-16 11:48:28 +00:00
'';
2017-04-04 12:03:55 +00:00
outputs = ["out" "man"];
2017-11-16 11:48:28 +00:00
extraPath = optionals (stdenv.isLinux) (makeBinPath [ iproute iptables e2fsprogs xz xfsprogs procps utillinux ]);
2017-10-17 21:22:25 +00:00
2017-11-16 11:48:28 +00:00
installPhase = optionalString (stdenv.isLinux) ''
2018-01-02 12:33:04 +00:00
install -Dm755 ./components/engine/bundles/dynbinary-daemon/dockerd $out/libexec/docker/dockerd
2017-10-17 21:22:25 +00:00
2017-04-04 12:03:55 +00:00
makeWrapper $out/libexec/docker/dockerd $out/bin/dockerd \
--prefix PATH : "$out/libexec/docker:$extraPath"
# docker uses containerd now
ln -s ${docker-containerd}/bin/containerd $out/libexec/docker/docker-containerd
ln -s ${docker-containerd}/bin/containerd-shim $out/libexec/docker/docker-containerd-shim
ln -s ${docker-runc}/bin/runc $out/libexec/docker/docker-runc
ln -s ${docker-proxy}/bin/docker-proxy $out/libexec/docker/docker-proxy
ln -s ${docker-tini}/bin/tini-static $out/libexec/docker/docker-init
# systemd
install -Dm644 ./components/engine/contrib/init/systemd/docker.service $out/etc/systemd/system/docker.service
2017-11-16 11:48:28 +00:00
'' + ''
install -Dm755 ./components/cli/docker $out/libexec/docker/docker
makeWrapper $out/libexec/docker/docker $out/bin/docker \
--prefix PATH : "$out/libexec/docker:$extraPath"
# completion (cli)
install -Dm644 ./components/cli/contrib/completion/bash/docker $out/share/bash-completion/completions/docker
install -Dm644 ./components/cli/contrib/completion/fish/docker.fish $out/share/fish/vendor_completions.d/docker.fish
install -Dm644 ./components/cli/contrib/completion/zsh/_docker $out/share/zsh/site-functions/_docker
2017-04-04 12:03:55 +00:00
# Include contributed man pages (cli)
# 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
2017-04-04 12:03:55 +00:00
manRoot="$man/share/man"
mkdir -p "$manRoot"
for manDir in ./man/man?; do
2017-04-04 12:03:55 +00:00
manBase="$(basename "$manDir")" # "man1"
for manFile in "$manDir"/*; do
manName="$(basename "$manFile")" # "docker-build.1"
mkdir -p "$manRoot/$manBase"
gzip -c "$manFile" > "$manRoot/$manBase/$manName.gz"
done
2016-09-10 10:45:01 +00:00
done
2017-04-04 12:03:55 +00:00
'';
preFixup = ''
2017-11-16 11:48:28 +00:00
find $out -type f -exec remove-references-to -t ${go} -t ${stdenv.cc.cc} '{}' +
'' + optionalString (stdenv.isLinux) ''
find $out -type f -exec remove-references-to -t ${stdenv.glibc.dev} '{}' +
2017-04-04 12:03:55 +00:00
'';
meta = {
homepage = https://www.docker.com/;
2017-04-04 12:03:55 +00:00
description = "An open source project to pack, ship and run any application as a lightweight container";
license = licenses.asl20;
2017-11-16 11:48:28 +00:00
maintainers = with maintainers; [ nequissimus offline tailhook vdemeester periklis ];
platforms = with platforms; linux ++ darwin;
2017-04-04 12:03:55 +00:00
};
2017-11-16 11:48:28 +00:00
});
2017-04-04 12:03:55 +00:00
2017-08-12 19:37:36 +00:00
# Get revisions from
2018-03-23 21:37:30 +00:00
# https://github.com/docker/docker-ce/tree/v${version}/components/engine/hack/dockerfile/install/*
2018-11-08 13:40:24 +00:00
docker_18_09 = dockerGen rec {
version = "18.09.0";
rev = "4d60db472b2bde6931072ca6467f2667c2590dff"; # git commit
sha256 = "0py944f5k71c1cf6ci96vnqk43d5979w7r82cngaxk1g6za6k5yj";
2018-07-19 12:34:13 +00:00
runcRev = "69663f0bd4b60df09991c08812a60108003fa340";
runcSha256 = "1l37r97l3ra4ph069w190d05r0a43s76nn9jvvlkbwrip1cp6gyq";
2018-08-22 20:08:40 +00:00
containerdRev = "468a545b9edcd5932818eb9de8e72413e616e86e";
containerdSha256 = "1rp015cm5fw9kfarcmfhfkr1sh0iz7kvqls6f8nfhwrrz5armd5v";
2018-07-19 12:34:13 +00:00
tiniRev = "fec3683b971d9c3ef73f284f176672c44b448662";
tiniSha256 = "1h20i3wwlbd8x4jr2gz68hgklh0lb0jj7y5xk1wvr8y58fip1rdn";
2018-04-10 22:28:20 +00:00
};
2014-01-24 13:39:43 +00:00
}