proot: move to override overlay

This commit is contained in:
tv 2020-05-01 11:58:42 +02:00
parent b0549ee61b
commit a269f84b1d
2 changed files with 10 additions and 6 deletions

View File

@ -16,10 +16,4 @@ foldl' mergeAttrs {}
reaktor2 = self.haskellPackages.reaktor2;
ReaktorPlugins = self.callPackage ./simple/Reaktor/plugins.nix {};
# https://github.com/proot-me/PRoot/issues/106
proot = self.writeDashBin "proot" ''
export PROOT_NO_SECCOMP=1
exec ${super.proot}/bin/proot "$@"
'';
}

View File

@ -0,0 +1,10 @@
with import <stockholm/lib>;
self: super: {
# https://github.com/proot-me/PRoot/issues/106
proot = self.writeDashBin "proot" ''
export PROOT_NO_SECCOMP=1
exec ${super.proot}/bin/proot "$@"
'';
}