nixpkgs/pkgs/applications/virtualization/cri-o/default.nix

68 lines
1.4 KiB
Nix
Raw Normal View History

2020-05-11 21:40:08 +01:00
{ stdenv
, btrfs-progs
, buildGoModule
, fetchFromGitHub
, glibc
, gpgme
2020-05-02 13:35:37 +01:00
, installShellFiles
, libapparmor
, libseccomp
, libselinux
, lvm2
2020-05-02 13:35:37 +01:00
, pkg-config
}:
buildGoModule rec {
2020-05-02 13:35:37 +01:00
pname = "cri-o";
version = "1.18.2";
src = fetchFromGitHub {
owner = "cri-o";
repo = "cri-o";
rev = "v${version}";
sha256 = "0p6gprbs54v3n09fjpyfxnzxs680ms8924wdim4q9qw52wc6sbdz";
};
vendorSha256 = null;
2020-05-02 13:35:37 +01:00
outputs = [ "out" "man" ];
nativeBuildInputs = [ installShellFiles pkg-config ];
buildInputs = [
btrfs-progs
gpgme
libapparmor
libseccomp
libselinux
lvm2
] ++ stdenv.lib.optionals (glibc != null) [ glibc glibc.static ];
BUILDTAGS = "apparmor seccomp selinux containers_image_openpgp containers_image_ostree_stub";
buildPhase = ''
patchShebangs .
2020-05-02 13:35:37 +01:00
sed -i '/version.buildDate/d' Makefile
make binaries docs BUILDTAGS="$BUILDTAGS"
'';
2020-05-02 13:35:37 +01:00
installPhase = ''
2020-05-11 21:40:08 +01:00
install -Dm755 bin/* -t $out/bin
2020-05-02 13:35:37 +01:00
for shell in bash fish zsh; do
installShellCompletion --$shell completions/$shell/*
done
installManPage docs/*.[1-9]
'';
meta = with stdenv.lib; {
homepage = "https://cri-o.io";
2020-05-02 13:35:37 +01:00
description = ''
Open Container Initiative-based implementation of the
Kubernetes Container Runtime Interface
'';
license = licenses.asl20;
2020-04-23 23:07:39 +01:00
maintainers = with maintainers; [ ] ++ teams.podman.members;
platforms = platforms.linux;
};
}