nixpkgs/pkgs/applications/virtualization/containerd/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

57 lines
1.3 KiB
Nix
Raw Normal View History

{ lib
, fetchFromGitHub
, buildGoModule
, btrfs-progs
, go-md2man
, installShellFiles
, util-linux
, nixosTests
, kubernetes
}:
2016-05-21 16:19:11 +00:00
buildGoModule rec {
pname = "containerd";
2023-09-01 04:40:55 +00:00
version = "1.7.5";
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
};
vendorHash = null;
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 ];
BUILDTAGS = lib.optionals (btrfs-progs == null) [ "no_btrfs" ];
buildPhase = ''
2021-07-30 06:52:49 +00:00
runHook preBuild
patchShebangs .
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
install -Dm555 bin/* -t $out/bin
installShellCompletion --bash contrib/autocomplete/ctr
installShellCompletion --zsh --name _ctr contrib/autocomplete/zsh_autocomplete
2021-07-30 06:52:49 +00:00
runHook postInstall
'';
passthru.tests = { inherit (nixosTests) docker; } // kubernetes.tests;
2020-11-22 00:59:08 +00:00
meta = with lib; {
changelog = "https://github.com/containerd/containerd/releases/tag/${src.rev}";
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;
};
}