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

56 lines
1.2 KiB
Nix
Raw Normal View History

{ lib
, fetchFromGitHub
, buildGoModule
, btrfs-progs
, go-md2man
, installShellFiles
, util-linux
, nixosTests
}:
2016-05-21 18:19:11 +02:00
buildGoModule rec {
pname = "containerd";
2021-07-20 02:38:19 +02:00
version = "1.5.4";
outputs = [ "out" "man" ];
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}";
2021-07-20 02:38:19 +02:00
sha256 = "sha256-VV1cxA8tDRiPDxKV8OGu3T7sgutmyL+VPNqTeFcVjJA=";
2016-05-21 18:19:11 +02:00
};
vendorSha256 = null;
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 ];
buildFlags = [ "VERSION=v${version}" "REVISION=${src.rev}" ];
BUILDTAGS = lib.optionals (btrfs-progs == null) [ "no_btrfs" ];
buildPhase = ''
patchShebangs .
make binaries man $buildFlags
2016-05-21 18:19:11 +02:00
'';
installPhase = ''
install -Dm555 bin/* -t $out/bin
2020-05-10 03:24:03 +02:00
installManPage man/*.[1-9]
installShellCompletion --bash contrib/autocomplete/ctr
installShellCompletion --zsh --name _ctr contrib/autocomplete/zsh_autocomplete
'';
2020-11-22 01:59:08 +01:00
passthru.tests = { inherit (nixosTests) docker; };
meta = with lib; {
homepage = "https://containerd.io/";
2016-05-21 18:19:11 +02:00
description = "A daemon to control runC";
license = licenses.asl20;
maintainers = with maintainers; [ offline vdemeester ];
2016-05-21 18:19:11 +02:00
platforms = platforms.linux;
};
}