2020-12-02 22:23:47 +01:00
|
|
|
{ lib
|
|
|
|
, fetchFromGitHub
|
2021-05-20 00:47:00 +02:00
|
|
|
, buildGoModule
|
2020-12-02 22:23:47 +01:00
|
|
|
, btrfs-progs
|
|
|
|
, go-md2man
|
|
|
|
, installShellFiles
|
|
|
|
, util-linux
|
|
|
|
, nixosTests
|
|
|
|
}:
|
2016-05-21 18:19:11 +02:00
|
|
|
|
2021-05-20 00:47:00 +02:00
|
|
|
buildGoModule rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "containerd";
|
2022-06-06 23:19:17 +02:00
|
|
|
version = "1.6.6";
|
2021-05-20 00:47:00 +02:00
|
|
|
|
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}";
|
2022-06-06 23:19:17 +02:00
|
|
|
sha256 = "sha256-cmarbad6VzcGTCHT/NtApkYsK/oo6WZQ//q8Fvh+ez8=";
|
2016-05-21 18:19:11 +02:00
|
|
|
};
|
|
|
|
|
2021-05-20 00:47:00 +02:00
|
|
|
vendorSha256 = null;
|
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 ];
|
|
|
|
|
2021-05-20 00:47:00 +02:00
|
|
|
BUILDTAGS = lib.optionals (btrfs-progs == null) [ "no_btrfs" ];
|
2017-09-13 08:34:03 +02:00
|
|
|
|
2018-12-20 14:25:24 +01:00
|
|
|
buildPhase = ''
|
2021-07-30 08:52:49 +02:00
|
|
|
runHook preBuild
|
2017-09-13 08:34:03 +02:00
|
|
|
patchShebangs .
|
2022-02-16 07:06:04 +01:00
|
|
|
make binaries "VERSION=v${version}" "REVISION=${src.rev}"
|
2021-07-30 08:52:49 +02:00
|
|
|
runHook postBuild
|
2016-05-21 18:19:11 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
2021-07-30 08:52:49 +02:00
|
|
|
runHook preInstall
|
2020-12-02 22:23:47 +01:00
|
|
|
install -Dm555 bin/* -t $out/bin
|
2021-02-17 08:56:49 +01:00
|
|
|
installShellCompletion --bash contrib/autocomplete/ctr
|
|
|
|
installShellCompletion --zsh --name _ctr contrib/autocomplete/zsh_autocomplete
|
2021-07-30 08:52:49 +02:00
|
|
|
runHook postInstall
|
2020-12-02 22:23:47 +01:00
|
|
|
'';
|
|
|
|
|
2020-11-22 01:59:08 +01:00
|
|
|
passthru.tests = { inherit (nixosTests) docker; };
|
|
|
|
|
2020-12-02 22:23:47 +01:00
|
|
|
meta = with lib; {
|
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;
|
2022-02-20 01:12:06 +01:00
|
|
|
maintainers = with maintainers; [ offline vdemeester endocrimes zowoq ];
|
2016-05-21 18:19:11 +02:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|