Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
98 lines
1.9 KiB
Nix
98 lines
1.9 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitHub,
|
|
autoreconfHook,
|
|
go-md2man,
|
|
pkg-config,
|
|
libcap,
|
|
libseccomp,
|
|
python3,
|
|
systemd,
|
|
yajl,
|
|
nixosTests,
|
|
criu,
|
|
}:
|
|
|
|
let
|
|
# these tests require additional permissions
|
|
disabledTests = [
|
|
"test_capabilities.py"
|
|
"test_cwd.py"
|
|
"test_delete.py"
|
|
"test_detach.py"
|
|
"test_exec.py"
|
|
"test_hooks.py"
|
|
"test_hostname.py"
|
|
"test_oci_features"
|
|
"test_paths.py"
|
|
"test_pid.py"
|
|
"test_pid_file.py"
|
|
"test_preserve_fds.py"
|
|
"test_resources"
|
|
"test_seccomp"
|
|
"test_start.py"
|
|
"test_uid_gid.py"
|
|
"test_update.py"
|
|
"tests_libcrun_utils"
|
|
];
|
|
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "crun";
|
|
version = "1.24";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "containers";
|
|
repo = "crun";
|
|
rev = version;
|
|
hash = "sha256-Sdp6ZxUzK8T7zfrgevrLxhMh7SQfO+6mABBiFMLbgh0=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
go-md2man
|
|
pkg-config
|
|
python3
|
|
];
|
|
|
|
buildInputs = [
|
|
criu
|
|
libcap
|
|
libseccomp
|
|
systemd
|
|
yajl
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
strictDeps = true;
|
|
|
|
NIX_LDFLAGS = "-lcriu";
|
|
|
|
# we need this before autoreconfHook does its thing in order to initialize
|
|
# config.h with the correct values
|
|
postPatch = ''
|
|
echo ${version} > .tarball-version
|
|
echo '#define GIT_VERSION "${src.rev}"' > git-version.h
|
|
|
|
${lib.concatMapStringsSep "\n" (
|
|
e: "substituteInPlace Makefile.am --replace 'tests/${e}' ''"
|
|
) disabledTests}
|
|
'';
|
|
|
|
doCheck = true;
|
|
|
|
passthru.tests = { inherit (nixosTests) podman; };
|
|
|
|
meta = {
|
|
changelog = "https://github.com/containers/crun/releases/tag/${version}";
|
|
description = "Fast and lightweight fully featured OCI runtime and C library for running containers";
|
|
homepage = "https://github.com/containers/crun";
|
|
license = lib.licenses.gpl2Plus;
|
|
platforms = lib.platforms.linux;
|
|
teams = [ lib.teams.podman ];
|
|
mainProgram = "crun";
|
|
};
|
|
}
|