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

140 lines
4.7 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
2016-09-10 10:45:01 +00:00
, sqlite, iproute, bridge-utils, devicemapper, systemd
, btrfs-progs, iptables, e2fsprogs, xz, utillinux, xfsprogs
, procps
2015-11-16 15:17:32 +00:00
}:
2014-01-24 13:39:43 +00:00
2015-08-27 11:22:29 +00:00
# https://github.com/docker/docker/blob/master/project/PACKAGERS.md
2016-09-10 10:45:01 +00:00
with lib;
2015-11-16 15:17:32 +00:00
2014-01-24 13:39:43 +00:00
stdenv.mkDerivation rec {
name = "docker-${version}";
2017-03-14 12:02:35 +00:00
version = "17.03.0-ce";
rev = "60ccb22"; # should match the version commit
2014-01-24 13:39:43 +00:00
2015-08-04 03:16:03 +00:00
src = fetchFromGitHub {
owner = "docker";
repo = "docker";
rev = "v${version}";
2017-03-14 12:02:35 +00:00
sha256 = "0ml9aan8x4w8kfz7dm9vvl8b1a0vq09si9b7z50xz84040cjhnr9";
2014-01-24 13:39:43 +00:00
};
docker-runc = runc.overrideAttrs (oldAttrs: rec {
name = "docker-runc";
src = fetchFromGitHub {
owner = "docker";
repo = "runc";
2017-03-14 12:02:35 +00:00
rev = "a01dafd48bc1c7cc12bdb01206f9fea7dd6feb70";
sha256 = "0n7vr47fhpyxx5vdnp453qp4cq50w4hwgq3ldyj5878d91iir7l1";
};
# docker/runc already include these patches / are not applicable
patches = [];
});
docker-containerd = containerd.overrideAttrs (oldAttrs: rec {
name = "docker-containerd";
src = fetchFromGitHub {
owner = "docker";
repo = "containerd";
2017-03-14 12:02:35 +00:00
rev = "977c511eda0925a723debdc94d09459af49d082a";
sha256 = "0hmcj8i70vv3a3bbdawrgi84a442m09x5mpc7fgn8dd3v031lcbc";
};
});
docker-tini = tini.overrideAttrs (oldAttrs: rec {
name = "docker-init";
src = fetchFromGitHub {
owner = "krallin";
repo = "tini";
rev = "949e6facb77383876aeff8a6944dde66b3089574";
sha256 = "0zj4kdis1vvc6dwn4gplqna0bs7v6d1y2zc8v80s3zi018inhznw";
};
# Do not remove static from make files as we want a static binary
patchPhase = ''
'';
NIX_CFLAGS_COMPILE = [
"-DMINIMAL=ON"
];
});
2015-11-16 15:17:32 +00:00
buildInputs = [
2017-03-11 14:08:04 +00:00
makeWrapper removeReferencesTo pkgconfig go-md2man go
2016-09-10 10:45:01 +00:00
sqlite devicemapper btrfs-progs systemd
2015-11-16 15:17:32 +00:00
];
2014-01-24 13:39:43 +00:00
dontStrip = true;
2014-01-24 13:39:43 +00:00
2016-09-10 10:45:01 +00:00
DOCKER_BUILDTAGS = []
++ optional (systemd != null) [ "journald" ]
++ optional (btrfs-progs == null) "exclude_graphdriver_btrfs"
++ optional (devicemapper == null) "exclude_graphdriver_devicemapper";
2016-01-14 02:40:26 +00:00
2016-05-27 14:41:05 +00:00
# systemd 230 no longer has libsystemd-journal as a separate entity from libsystemd
postPatch = ''
substituteInPlace ./hack/make.sh --replace libsystemd-journal libsystemd
substituteInPlace ./daemon/logger/journald/read.go --replace libsystemd-journal libsystemd
'';
2014-01-24 13:39:43 +00:00
buildPhase = ''
2015-05-10 10:26:53 +00:00
patchShebangs .
export AUTO_GOPATH=1
export DOCKER_GITCOMMIT="${rev}"
2015-04-25 13:46:35 +00:00
./hack/make.sh dynbinary
2014-01-24 13:39:43 +00:00
'';
2016-09-10 10:45:01 +00:00
outputs = ["out" "man"];
extraPath = makeBinPath [ iproute iptables e2fsprogs xz xfsprogs procps utillinux ];
2014-01-24 13:39:43 +00:00
installPhase = ''
2016-09-10 10:45:01 +00:00
install -Dm755 ./bundles/${version}/dynbinary-client/docker-${version} $out/libexec/docker/docker
install -Dm755 ./bundles/${version}/dynbinary-daemon/dockerd-${version} $out/libexec/docker/dockerd
2015-11-16 15:17:32 +00:00
makeWrapper $out/libexec/docker/docker $out/bin/docker \
2016-09-10 10:45:01 +00:00
--prefix PATH : "$out/libexec/docker:$extraPath"
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
2014-01-24 13:39:43 +00:00
# systemd
install -Dm644 ./contrib/init/systemd/docker.service $out/etc/systemd/system/docker.service
# completion
install -Dm644 ./contrib/completion/bash/docker $out/share/bash-completion/completions/docker
2016-06-20 20:36:03 +00:00
install -Dm644 ./contrib/completion/fish/docker.fish $out/share/fish/vendor_completions.d/docker.fish
2014-01-24 13:39:43 +00:00
install -Dm644 ./contrib/completion/zsh/_docker $out/share/zsh/site-functions/_docker
2016-09-10 10:45:01 +00:00
# Include contributed man pages
man/md2man-all.sh -q
manRoot="$man/share/man"
mkdir -p "$manRoot"
for manDir in man/man?; do
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
done
'';
preFixup = ''
2017-03-11 14:08:04 +00:00
find $out -type f -exec remove-references-to -t ${go} -t ${stdenv.cc.cc} -t ${stdenv.glibc.dev} '{}' +
2014-01-24 13:39:43 +00:00
'';
2016-09-10 10:45:01 +00:00
meta = {
2015-08-04 03:16:03 +00:00
homepage = http://www.docker.com/;
2014-01-24 13:39:43 +00:00
description = "An open source project to pack, ship and run any application as a lightweight container";
license = licenses.asl20;
maintainers = with maintainers; [ offline tailhook ];
2014-01-24 13:39:43 +00:00
platforms = platforms.linux;
};
}