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