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