Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

hercules-ci-agent: runc -> crun

(cherry picked from commit 1e0bfec0a710ead9c235c1f234dca2d976030e1f)

+2 -2
+2 -2
pkgs/development/tools/continuous-integration/hercules-ci-agent/default.nix
··· 1 1 { 2 + crun, 2 3 git, 3 4 gnutar, 4 5 gzip, ··· 8 9 makeBinaryWrapper, 9 10 nixos, 10 11 openssh, 11 - runc, 12 12 stdenv, 13 13 testers, 14 14 }: 15 15 let 16 16 inherit (haskell.lib.compose) overrideCabal addBuildTools justStaticExecutables; 17 17 inherit (lib) makeBinPath; 18 - bundledBins = [ gnutar gzip git openssh ] ++ lib.optional stdenv.isLinux runc; 18 + bundledBins = [ gnutar gzip git openssh ] ++ lib.optional stdenv.isLinux crun; 19 19 20 20 pkg = 21 21 # justStaticExecutables is needed due to https://github.com/NixOS/nix/issues/2990