2020-05-11 21:40:08 +01:00
|
|
|
{ stdenv
|
2019-05-19 13:25:52 +01:00
|
|
|
, btrfs-progs
|
2020-04-30 08:09:40 +01:00
|
|
|
, buildGoModule
|
2019-05-19 13:25:52 +01:00
|
|
|
, fetchFromGitHub
|
|
|
|
, glibc
|
|
|
|
, gpgme
|
2020-05-02 13:35:37 +01:00
|
|
|
, installShellFiles
|
2019-05-19 13:25:52 +01:00
|
|
|
, libapparmor
|
|
|
|
, libseccomp
|
|
|
|
, libselinux
|
|
|
|
, lvm2
|
2020-05-02 13:35:37 +01:00
|
|
|
, pkg-config
|
2019-05-19 13:25:52 +01:00
|
|
|
}:
|
|
|
|
|
2020-04-30 08:09:40 +01:00
|
|
|
buildGoModule rec {
|
2020-05-02 13:35:37 +01:00
|
|
|
pname = "cri-o";
|
2020-06-20 01:20:30 +01:00
|
|
|
version = "1.18.2";
|
2019-05-19 13:25:52 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "cri-o";
|
|
|
|
repo = "cri-o";
|
|
|
|
rev = "v${version}";
|
2020-06-20 01:20:30 +01:00
|
|
|
sha256 = "0p6gprbs54v3n09fjpyfxnzxs680ms8924wdim4q9qw52wc6sbdz";
|
2019-05-19 13:25:52 +01:00
|
|
|
};
|
2020-04-30 08:09:40 +01:00
|
|
|
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 ];
|
2019-05-19 13:25:52 +01:00
|
|
|
|
2020-05-13 13:11:32 +01:00
|
|
|
BUILDTAGS = "apparmor seccomp selinux containers_image_openpgp containers_image_ostree_stub";
|
2019-05-19 13:25:52 +01:00
|
|
|
buildPhase = ''
|
2020-05-13 13:11:32 +01:00
|
|
|
patchShebangs .
|
|
|
|
|
2020-05-02 13:35:37 +01:00
|
|
|
sed -i '/version.buildDate/d' Makefile
|
|
|
|
|
|
|
|
make binaries docs BUILDTAGS="$BUILDTAGS"
|
2019-05-19 13:25:52 +01:00
|
|
|
'';
|
2020-05-02 13:35:37 +01:00
|
|
|
|
2019-05-19 13:25:52 +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]
|
2019-05-19 13:25:52 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
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
|
|
|
|
'';
|
2019-05-19 13:25:52 +01:00
|
|
|
license = licenses.asl20;
|
2020-04-23 23:07:39 +01:00
|
|
|
maintainers = with maintainers; [ ] ++ teams.podman.members;
|
2019-05-19 13:25:52 +01:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|