2020-05-11 13:40:08 -07:00
|
|
|
{ stdenv
|
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
|
|
|
|
, libassuan
|
|
|
|
, libgpgerror
|
|
|
|
, libseccomp
|
|
|
|
, libselinux
|
|
|
|
, lvm2
|
2020-05-02 05:35:37 -07:00
|
|
|
, pkg-config
|
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";
|
2020-04-23 07:36:53 -07:00
|
|
|
version = "1.18.0";
|
2019-05-19 05:25:52 -07:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "cri-o";
|
|
|
|
repo = "cri-o";
|
|
|
|
rev = "v${version}";
|
2020-04-23 07:36:53 -07:00
|
|
|
sha256 = "142flmv54pj48rjqkd26fbxrcbx2cv6pdmrc33jgyvn6r99zliah";
|
2019-05-19 05:25:52 -07:00
|
|
|
};
|
2020-04-30 00:09:40 -07:00
|
|
|
vendorSha256 = null;
|
2020-05-02 05:35:37 -07:00
|
|
|
outputs = [ "out" "man" ];
|
|
|
|
nativeBuildInputs = [ installShellFiles pkg-config ];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
btrfs-progs
|
|
|
|
gpgme
|
|
|
|
libapparmor
|
|
|
|
libassuan
|
|
|
|
libgpgerror
|
|
|
|
libseccomp
|
|
|
|
libselinux
|
|
|
|
lvm2
|
|
|
|
] ++ stdenv.lib.optionals (glibc != null) [ glibc glibc.static ];
|
2019-05-19 05:25:52 -07:00
|
|
|
|
2020-04-23 07:36:53 -07:00
|
|
|
BUILDTAGS = "apparmor seccomp selinux containers_image_ostree_stub";
|
2019-05-19 05:25:52 -07:00
|
|
|
buildPhase = ''
|
2020-05-02 05:35:37 -07:00
|
|
|
sed -i '/version.buildDate/d' Makefile
|
|
|
|
|
|
|
|
make binaries docs BUILDTAGS="$BUILDTAGS"
|
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 = ''
|
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]
|
2019-05-19 05:25:52 -07:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.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;
|
|
|
|
};
|
|
|
|
}
|