40 lines
975 B
Nix
40 lines
975 B
Nix
{ stdenv, lib, fetchFromGitHub, autoreconfHook, go-md2man, pkgconfig
|
|
, libcap, libseccomp, python3, systemd, yajl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "crun";
|
|
version = "0.12.2.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "containers";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "16hjkkr1fp542ycyp87pj626mzfrza5mcb82hhkp4a8m8bqmpzp4";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook go-md2man pkgconfig python3 ];
|
|
|
|
buildInputs = [ libcap libseccomp systemd yajl ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
preBuild = ''
|
|
cat > git-version.h <<EOF
|
|
#ifndef GIT_VERSION
|
|
# define GIT_VERSION "nixpkgs-${version}"
|
|
#endif
|
|
EOF
|
|
'';
|
|
|
|
# the tests require additional permissions
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "A fast and lightweight fully featured OCI runtime and C library for running containers";
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
inherit (src.meta) homepage;
|
|
};
|
|
}
|