2020-12-02 21:23:47 +00:00
|
|
|
{ lib
|
|
|
|
, fetchFromGitHub
|
|
|
|
, buildGoPackage
|
|
|
|
, btrfs-progs
|
|
|
|
, go-md2man
|
|
|
|
, installShellFiles
|
|
|
|
, util-linux
|
|
|
|
, nixosTests
|
|
|
|
}:
|
2016-05-21 16:19:11 +00:00
|
|
|
|
2018-12-20 13:25:24 +00:00
|
|
|
buildGoPackage rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "containerd";
|
2021-03-06 05:48:50 +00:00
|
|
|
version = "1.4.4";
|
2016-05-21 16:19:11 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2017-08-29 00:22:00 +00:00
|
|
|
owner = "containerd";
|
2016-05-21 16:19:11 +00:00
|
|
|
repo = "containerd";
|
|
|
|
rev = "v${version}";
|
2021-03-06 05:48:50 +00:00
|
|
|
sha256 = "0qjbfj1dw6pykxhh8zahcxlgpyjzgnrngk5vjaf34akwyan8nrxb";
|
2016-05-21 16:19:11 +00:00
|
|
|
};
|
|
|
|
|
2018-12-20 13:25:24 +00:00
|
|
|
goPackagePath = "github.com/containerd/containerd";
|
2020-04-28 01:50:57 +00:00
|
|
|
outputs = [ "out" "man" ];
|
2018-12-20 13:25:24 +00:00
|
|
|
|
2020-11-24 15:29:28 +00:00
|
|
|
nativeBuildInputs = [ go-md2man installShellFiles util-linux ];
|
2020-03-17 16:28:03 +00:00
|
|
|
|
|
|
|
buildInputs = [ btrfs-progs ];
|
|
|
|
|
2020-12-02 21:23:47 +00:00
|
|
|
buildFlags = [ "VERSION=v${version}" "REVISION=${src.rev}" ];
|
2017-09-13 06:34:03 +00:00
|
|
|
|
2020-12-02 21:23:47 +00:00
|
|
|
BUILDTAGS = [ ]
|
|
|
|
++ lib.optional (btrfs-progs == null) "no_btrfs";
|
2017-09-13 06:34:03 +00:00
|
|
|
|
2018-12-20 13:25:24 +00:00
|
|
|
buildPhase = ''
|
|
|
|
cd go/src/${goPackagePath}
|
2017-09-13 06:34:03 +00:00
|
|
|
patchShebangs .
|
2020-12-02 21:23:47 +00:00
|
|
|
make binaries man $buildFlags
|
2016-05-21 16:19:11 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
2020-12-02 21:23:47 +00:00
|
|
|
install -Dm555 bin/* -t $out/bin
|
2020-05-10 01:24:03 +00:00
|
|
|
installManPage man/*.[1-9]
|
2021-02-17 07:56:49 +00:00
|
|
|
installShellCompletion --bash contrib/autocomplete/ctr
|
|
|
|
installShellCompletion --zsh --name _ctr contrib/autocomplete/zsh_autocomplete
|
2020-12-02 21:23:47 +00:00
|
|
|
'';
|
|
|
|
|
2020-11-22 00:59:08 +00:00
|
|
|
passthru.tests = { inherit (nixosTests) docker; };
|
|
|
|
|
2020-12-02 21:23:47 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://containerd.io/";
|
2016-05-21 16:19:11 +00:00
|
|
|
description = "A daemon to control runC";
|
|
|
|
license = licenses.asl20;
|
2018-08-20 14:36:48 +00:00
|
|
|
maintainers = with maintainers; [ offline vdemeester ];
|
2016-05-21 16:19:11 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|