Merge pull request #259355 from hercules-ci/runc-output-closure-size

runc: Remove procps from wrapper
This commit is contained in:
Thiago Kenji Okada 2023-10-19 18:19:02 +01:00 committed by GitHub
commit 321b684c40
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,7 +9,6 @@
, libseccomp , libseccomp
, libselinux , libselinux
, makeWrapper , makeWrapper
, procps
, nixosTests , nixosTests
}: }:
@ -45,7 +44,6 @@ buildGoModule rec {
install -Dm755 runc $out/bin/runc install -Dm755 runc $out/bin/runc
installManPage man/*/*.[1-9] installManPage man/*/*.[1-9]
wrapProgram $out/bin/runc \ wrapProgram $out/bin/runc \
--prefix PATH : ${lib.makeBinPath [ procps ]} \
--prefix PATH : /run/current-system/systemd/bin --prefix PATH : /run/current-system/systemd/bin
runHook postInstall runHook postInstall
''; '';