58 lines
1.3 KiB
Nix
58 lines
1.3 KiB
Nix
|
{ lib, fetchFromGitHub, buildGoPackage, btrfs-progs, go-md2man, utillinux }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
buildGoPackage rec {
|
||
|
pname = "containerd";
|
||
|
version = "1.2.13";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "containerd";
|
||
|
repo = "containerd";
|
||
|
rev = "v${version}";
|
||
|
sha256 = "1rac3iak3jpz57yarxc72bxgxvravwrl0j6s6w2nxrmh2m3kxqzn";
|
||
|
};
|
||
|
|
||
|
goPackagePath = "github.com/containerd/containerd";
|
||
|
outputs = [ "bin" "out" "man" ];
|
||
|
|
||
|
nativeBuildInputs = [ go-md2man utillinux ];
|
||
|
|
||
|
buildInputs = [ btrfs-progs ];
|
||
|
|
||
|
buildFlags = [ "VERSION=v${version}" ];
|
||
|
|
||
|
BUILDTAGS = []
|
||
|
++ optional (btrfs-progs == null) "no_btrfs";
|
||
|
|
||
|
buildPhase = ''
|
||
|
cd go/src/${goPackagePath}
|
||
|
patchShebangs .
|
||
|
make binaries
|
||
|
'';
|
||
|
|
||
|
installPhase = ''
|
||
|
for b in bin/*; do
|
||
|
install -Dm555 $b $bin/$b
|
||
|
done
|
||
|
|
||
|
make man
|
||
|
manRoot="$man/share/man"
|
||
|
mkdir -p "$manRoot"
|
||
|
for manFile in man/*; do
|
||
|
manName="$(basename "$manFile")" # "docker-build.1"
|
||
|
number="$(echo $manName | rev | cut -d'.' -f1 | rev)"
|
||
|
mkdir -p "$manRoot/man$number"
|
||
|
gzip -c "$manFile" > "$manRoot/man$number/$manName.gz"
|
||
|
done
|
||
|
'';
|
||
|
|
||
|
meta = {
|
||
|
homepage = "https://containerd.io/";
|
||
|
description = "A daemon to control runC";
|
||
|
license = licenses.asl20;
|
||
|
maintainers = with maintainers; [ offline vdemeester ];
|
||
|
platforms = platforms.linux;
|
||
|
};
|
||
|
}
|