hercules-ci-agent: runc -> crun

This commit is contained in:
Robert Hensing
2024-02-13 01:32:58 +01:00
parent 9b74bc0a26
commit 1e0bfec0a7
@@ -1,4 +1,5 @@
{
crun,
git,
gnutar,
gzip,
@@ -8,14 +9,13 @@
makeBinaryWrapper,
nixos,
openssh,
runc,
stdenv,
testers,
}:
let
inherit (haskell.lib.compose) overrideCabal addBuildTools justStaticExecutables;
inherit (lib) makeBinPath;
bundledBins = [ gnutar gzip git openssh ] ++ lib.optional stdenv.isLinux runc;
bundledBins = [ gnutar gzip git openssh ] ++ lib.optional stdenv.isLinux crun;
pkg =
# justStaticExecutables is needed due to https://github.com/NixOS/nix/issues/2990