85ee3e12ae
containerd: fix --version output
60 lines
1.4 KiB
Nix
60 lines
1.4 KiB
Nix
{ lib, fetchFromGitHub, buildGoPackage, btrfs-progs, go-md2man, utillinux }:
|
|
|
|
with lib;
|
|
|
|
buildGoPackage rec {
|
|
pname = "containerd";
|
|
version = "1.2.13";
|
|
# git commit for the above version's tag
|
|
commit = "7ad184331fa3e55e52b890ea95e65ba581ae3429";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "containerd";
|
|
repo = "containerd";
|
|
rev = "v${version}";
|
|
sha256 = "1rac3iak3jpz57yarxc72bxgxvravwrl0j6s6w2nxrmh2m3kxqzn";
|
|
};
|
|
|
|
goPackagePath = "github.com/containerd/containerd";
|
|
outputs = [ "out" "man" ];
|
|
|
|
nativeBuildInputs = [ go-md2man utillinux ];
|
|
|
|
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
|
|
'';
|
|
|
|
installPhase = ''
|
|
for b in bin/*; do
|
|
install -Dm555 $b $out/$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;
|
|
};
|
|
}
|