2019-06-16 22:59:06 +03:00
|
|
|
{ lib, fetchFromGitHub, buildGoPackage, btrfs-progs, go-md2man, utillinux }:
|
2016-05-21 19:19:11 +03:00
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
2018-12-20 16:25:24 +03:00
|
|
|
buildGoPackage rec {
|
2019-08-15 15:41:18 +03:00
|
|
|
pname = "containerd";
|
2020-03-07 14:27:01 +03:00
|
|
|
version = "1.2.13";
|
2020-04-15 08:31:57 +03:00
|
|
|
# git commit for the above version's tag
|
|
|
|
commit = "7ad184331fa3e55e52b890ea95e65ba581ae3429";
|
2016-05-21 19:19:11 +03:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2017-08-29 03:22:00 +03:00
|
|
|
owner = "containerd";
|
2016-05-21 19:19:11 +03:00
|
|
|
repo = "containerd";
|
|
|
|
rev = "v${version}";
|
2020-03-07 14:27:01 +03:00
|
|
|
sha256 = "1rac3iak3jpz57yarxc72bxgxvravwrl0j6s6w2nxrmh2m3kxqzn";
|
2016-05-21 19:19:11 +03:00
|
|
|
};
|
|
|
|
|
2018-12-20 16:25:24 +03:00
|
|
|
goPackagePath = "github.com/containerd/containerd";
|
2020-04-28 04:50:57 +03:00
|
|
|
outputs = [ "out" "man" ];
|
2018-12-20 16:25:24 +03:00
|
|
|
|
2020-03-17 19:28:03 +03:00
|
|
|
nativeBuildInputs = [ go-md2man utillinux ];
|
|
|
|
|
|
|
|
buildInputs = [ btrfs-progs ];
|
|
|
|
|
2020-04-15 08:31:57 +03:00
|
|
|
buildFlags = [ "VERSION=v${version}" "REVISION=${commit}" ];
|
2017-09-13 09:34:03 +03:00
|
|
|
|
|
|
|
BUILDTAGS = []
|
|
|
|
++ optional (btrfs-progs == null) "no_btrfs";
|
|
|
|
|
2018-12-20 16:25:24 +03:00
|
|
|
buildPhase = ''
|
|
|
|
cd go/src/${goPackagePath}
|
2017-09-13 09:34:03 +03:00
|
|
|
patchShebangs .
|
2020-04-15 08:31:57 +03:00
|
|
|
make binaries $buildFlags
|
2016-05-21 19:19:11 +03:00
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
2018-12-20 16:25:24 +03:00
|
|
|
for b in bin/*; do
|
2020-04-28 04:50:57 +03:00
|
|
|
install -Dm555 $b $out/$b
|
2018-12-20 16:25:24 +03:00
|
|
|
done
|
|
|
|
|
|
|
|
make man
|
|
|
|
manRoot="$man/share/man"
|
|
|
|
mkdir -p "$manRoot"
|
|
|
|
for manFile in man/*; do
|
|
|
|
manName="$(basename "$manFile")" # "docker-build.1"
|
|
|
|
number="$(echo $manName | rev | cut -d'.' -f1 | rev)"
|
|
|
|
mkdir -p "$manRoot/man$number"
|
|
|
|
gzip -c "$manFile" > "$manRoot/man$number/$manName.gz"
|
|
|
|
done
|
2016-05-21 19:19:11 +03:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2020-04-01 04:11:51 +03:00
|
|
|
homepage = "https://containerd.io/";
|
2016-05-21 19:19:11 +03:00
|
|
|
description = "A daemon to control runC";
|
|
|
|
license = licenses.asl20;
|
2018-08-20 17:36:48 +03:00
|
|
|
maintainers = with maintainers; [ offline vdemeester ];
|
2016-05-21 19:19:11 +03:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|