Merge pull request #206457 from Ma27/fix-nsjail-phases

nsjail: fix hooks invoked in `installPhase`
This commit is contained in:
Maximilian Bosch 2022-12-16 23:12:04 +01:00 committed by GitHub
commit c964a62287
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,10 +23,10 @@ stdenv.mkDerivation rec {
'';
installPhase = ''
runHook preInstallPhase
runHook preInstall
install -Dm755 nsjail "$out/bin/nsjail"
installManPage nsjail.1
runHook postInstallPhase
runHook postInstall
'';
meta = with lib; {