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

55 lines
1.3 KiB
Nix
Raw Normal View History

2020-11-24 15:29:28 +00:00
{ lib, fetchFromGitHub, buildGoPackage, btrfs-progs, go-md2man, installShellFiles, util-linux, nixosTests }:
2016-05-21 16:19:11 +00:00
with lib;
buildGoPackage rec {
pname = "containerd";
version = "1.4.3";
# git commit for the above version's tag
commit = "269548fa27e0089a8b8278fc4fc781d7f65a939b";
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}";
sha256 = "09xvhjg5f8h90w1y94kqqnqzhbhd62dcdd9wb9sdqakisjk6zrl0";
2016-05-21 16:19:11 +00:00
};
goPackagePath = "github.com/containerd/containerd";
outputs = [ "out" "man" ];
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 ];
buildFlags = [ "VERSION=v${version}" "REVISION=${commit}" ];
BUILDTAGS = []
++ optional (btrfs-progs == null) "no_btrfs";
buildPhase = ''
cd go/src/${goPackagePath}
patchShebangs .
make binaries $buildFlags
2016-05-21 16:19:11 +00:00
'';
installPhase = ''
for b in bin/*; do
install -Dm555 $b $out/$b
done
make man
2020-05-10 01:24:03 +00:00
installManPage man/*.[1-9]
2016-05-21 16:19:11 +00:00
'';
2020-11-22 00:59:08 +00:00
passthru.tests = { inherit (nixosTests) docker; };
2016-05-21 16:19:11 +00:00
meta = {
homepage = "https://containerd.io/";
2016-05-21 16:19:11 +00:00
description = "A daemon to control runC";
license = licenses.asl20;
maintainers = with maintainers; [ offline vdemeester ];
2016-05-21 16:19:11 +00:00
platforms = platforms.linux;
};
}