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

74 lines
1.5 KiB
Nix
Raw Normal View History

{ lib
, btrfs-progs
, buildGoModule
, fetchFromGitHub
, glibc
, gpgme
2020-05-02 12:35:37 +00:00
, installShellFiles
, libapparmor
, libseccomp
, libselinux
, lvm2
2020-05-02 12:35:37 +00:00
, pkg-config
2020-08-23 22:42:49 +00:00
, nixosTests
}:
buildGoModule rec {
2020-05-02 12:35:37 +00:00
pname = "cri-o";
version = "1.21.0";
src = fetchFromGitHub {
owner = "cri-o";
repo = "cri-o";
rev = "v${version}";
sha256 = "sha256-qhS1RLkM7xDsH3qDVL+ORXmwULYz8UK1oJM29oRqJ0M=";
};
vendorSha256 = null;
doCheck = false;
2020-05-02 12:35:37 +00:00
outputs = [ "out" "man" ];
nativeBuildInputs = [ installShellFiles pkg-config ];
buildInputs = [
btrfs-progs
gpgme
libapparmor
libseccomp
libselinux
lvm2
2021-01-15 05:42:41 +00:00
] ++ lib.optionals (glibc != null) [ glibc glibc.static ];
BUILDTAGS = "apparmor seccomp selinux containers_image_openpgp containers_image_ostree_stub";
buildPhase = ''
2021-03-31 06:52:07 +00:00
runHook preBuild
2020-05-02 12:35:37 +00:00
make binaries docs BUILDTAGS="$BUILDTAGS"
2021-03-31 06:52:07 +00:00
runHook postBuild
'';
2020-05-02 12:35:37 +00:00
installPhase = ''
2021-03-31 06:52:07 +00:00
runHook preInstall
2020-05-11 20:40:08 +00:00
install -Dm755 bin/* -t $out/bin
2020-05-02 12:35:37 +00:00
for shell in bash fish zsh; do
installShellCompletion --$shell completions/$shell/*
done
installManPage docs/*.[1-9]
2021-03-31 06:52:07 +00:00
runHook postInstall
'';
2020-08-23 22:42:49 +00:00
passthru.tests = { inherit (nixosTests) cri-o; };
meta = with lib; {
homepage = "https://cri-o.io";
2020-05-02 12:35:37 +00:00
description = ''
Open Container Initiative-based implementation of the
Kubernetes Container Runtime Interface
'';
license = licenses.asl20;
2020-04-23 22:07:39 +00:00
maintainers = with maintainers; [ ] ++ teams.podman.members;
platforms = platforms.linux;
};
}