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

53 lines
1.2 KiB
Nix
Raw Normal View History

2020-05-10 01:24:03 +00:00
{ lib, fetchFromGitHub, buildGoPackage, btrfs-progs, go-md2man, installShellFiles, utillinux }:
2016-05-21 16:19:11 +00:00
with lib;
buildGoPackage rec {
pname = "containerd";
2020-09-25 03:58:04 +00:00
version = "1.4.1";
# git commit for the above version's tag
commit = "7ad184331fa3e55e52b890ea95e65ba581ae3429";
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}";
2020-09-25 03:58:04 +00:00
sha256 = "1k6dqaidnldf7kpxdszf0wn6xb8m6vaizm2aza81fri1q0051213";
2016-05-21 16:19:11 +00:00
};
goPackagePath = "github.com/containerd/containerd";
outputs = [ "out" "man" ];
2020-05-10 01:24:03 +00:00
nativeBuildInputs = [ go-md2man installShellFiles utillinux ];
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
'';
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;
};
}