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