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

234 lines
8.3 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
2016-09-10 10:45:01 +00:00
, sqlite, iproute, bridge-utils, devicemapper, systemd
, 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
2017-04-04 12:03:55 +00:00
docker-containerd = containerd.overrideAttrs (oldAttrs: rec {
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-09-27 12:16:42 +00:00
# This should go into the containerd derivation once 1.0.0 is out
2017-10-17 21:22:25 +00:00
preBuild = ''
2017-11-21 14:23:48 +00:00
export GOPATH=$(pwd)/vendor
2017-09-27 12:16:42 +00:00
mkdir $(pwd)/vendor/src
mv $(pwd)/vendor/{github.com,golang.org,google.golang.org} $(pwd)/vendor/src/
2017-10-17 21:22:25 +00:00
'' + oldAttrs.preBuild;
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 (devicemapper == null) "exclude_graphdriver_devicemapper"
++ 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) [
2017-11-21 14:23:48 +00:00
sqlite devicemapper 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}"
./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) ''
2017-10-17 21:22:25 +00:00
if [ -d "./components/engine/bundles/${version}" ]; then
install -Dm755 ./components/engine/bundles/${version}/dynbinary-daemon/dockerd-${version} $out/libexec/docker/dockerd
else
install -Dm755 ./components/engine/bundles/dynbinary-daemon/dockerd-${version} $out/libexec/docker/dockerd
fi
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
# https://github.com/docker/docker-ce/blob/v${version}/components/engine/hack/dockerfile/binaries-commits
2017-09-27 12:16:42 +00:00
docker_17_09 = dockerGen rec {
2017-12-10 19:16:22 +00:00
version = "17.09.1-ce";
rev = "19e2cf6259bd7f027a3fff180876a22945ce4ba8"; # git commit
sha256 = "10glpbaw7bg2acgf1nmfn79is2b3xsm4shz67rp72dmpzzaavb42";
2017-09-27 12:16:42 +00:00
runcRev = "3f2f8b84a77f73d38244dd690525642a72156c64";
runcSha256 = "0vaagmav8443kmyxac2y1y5l2ipcs1c7gdmsnvj48y9bafqx72rq";
containerdRev = "06b9cb35161009dcb7123345749fef02f7cea8e0";
containerdSha256 = "10hms8a2nn69nfnwly6923jzx40c3slpsdhjhff4bxh36flpf9gd";
2017-08-12 19:37:36 +00:00
tiniRev = "949e6facb77383876aeff8a6944dde66b3089574";
tiniSha256 = "0zj4kdis1vvc6dwn4gplqna0bs7v6d1y2zc8v80s3zi018inhznw";
};
2017-10-17 21:22:25 +00:00
2017-11-21 14:23:48 +00:00
docker_17_11 = dockerGen rec {
version = "17.11.0-ce";
rev = "1caf76ce6baa889133ece59fab3c36aaf143d4ef"; # git commit
sha256 = "09s7lxcs4wdjj69l7z3nybbms7iqspk1wy7qnr4r52s8vr3fd5s4";
2017-10-17 21:22:25 +00:00
runcRev = "0351df1c5a66838d0c392b4ac4cf9450de844e2d";
runcSha256 = "1cmkdv6rli7v0y0fddqxvrvzd486fg9ssp3kgkya3szkljzz4xj0";
2017-11-21 14:23:48 +00:00
containerdRev = "992280e8e265f491f7a624ab82f3e238be086e49";
containerdSha256 = "1ci6jlgrrgz4ph451035sl98lj2jd467pd4qnv85ma9gzblrxs7n";
2017-10-17 21:22:25 +00:00
tiniRev = "949e6facb77383876aeff8a6944dde66b3089574";
tiniSha256 = "0zj4kdis1vvc6dwn4gplqna0bs7v6d1y2zc8v80s3zi018inhznw";
};
2014-01-24 13:39:43 +00:00
}