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

55 lines
1.2 KiB
Nix
Raw Normal View History

2017-03-11 14:07:56 +00:00
{ stdenv, lib, fetchFromGitHub, removeReferencesTo
, go, btrfs-progs }:
2016-05-21 16:19:11 +00:00
with lib;
stdenv.mkDerivation rec {
name = "containerd-${version}";
version = "1.1.2";
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 = "1rp015cm5fw9kfarcmfhfkr1sh0iz7kvqls6f8nfhwrrz5armd5v";
2016-05-21 16:19:11 +00:00
};
hardeningDisable = [ "fortify" ];
buildInputs = [ removeReferencesTo go btrfs-progs ];
buildFlags = "VERSION=v${version}";
BUILDTAGS = []
++ optional (btrfs-progs == null) "no_btrfs";
preConfigure = ''
# Extract the source
cd "$NIX_BUILD_TOP"
mkdir -p "go/src/github.com/containerd"
mv "$sourceRoot" "go/src/github.com/containerd/containerd"
export GOPATH=$NIX_BUILD_TOP/go:$GOPATH
'';
2016-05-21 16:19:11 +00:00
preBuild = ''
cd go/src/github.com/containerd/containerd
patchShebangs .
2016-05-21 16:19:11 +00:00
'';
installPhase = ''
mkdir -p $out/bin
cp bin/* $out/bin
'';
preFixup = ''
2017-03-11 14:07:56 +00:00
find $out -type f -exec remove-references-to -t ${go} '{}' +
2016-05-21 16:19:11 +00:00
'';
meta = {
homepage = https://containerd.tools/;
description = "A daemon to control runC";
license = licenses.asl20;
maintainers = with maintainers; [ offline ];
platforms = platforms.linux;
};
}