hci: runc -> crun

(cherry picked from commit 9b74bc0a26)
This commit is contained in:
Robert Hensing 2024-02-12 20:46:41 +01:00
parent 773cc49413
commit 9bcf319a80

View File

@ -1,8 +1,8 @@
{ haskell, haskellPackages, lib, makeWrapper, runc, stdenv, emptyDirectory }:
{ crun, haskell, haskellPackages, lib, makeWrapper, stdenv, emptyDirectory }:
let
inherit (haskell.lib.compose) overrideCabal addBuildTools justStaticExecutables appendConfigureFlags;
inherit (lib) makeBinPath;
bundledBins = lib.optional stdenv.isLinux runc;
bundledBins = lib.optional stdenv.isLinux crun;
overrides = old: {
hercules-ci-agent =