stockholm/krebs/5pkgs/default.nix

26 lines
571 B
Nix
Raw Normal View History

2016-10-20 18:54:38 +00:00
with import <stockholm/lib>;
2017-05-24 00:28:37 +00:00
self: super:
2017-05-24 00:28:37 +00:00
# Import files and subdirectories like they are overlays.
foldl' mergeAttrs {}
(map
(name: import (./. + "/${name}") self super)
(filter
(name: name != "default.nix" && !hasPrefix "." name)
(attrNames (readDir ./.))))
2017-05-24 00:28:37 +00:00
//
2016-11-15 22:26:55 +00:00
2017-05-24 00:28:37 +00:00
{
2019-01-21 11:09:29 +00:00
reaktor2 = self.haskellPackages.reaktor2;
2017-05-24 00:28:37 +00:00
ReaktorPlugins = self.callPackage ./simple/Reaktor/plugins.nix {};
2017-02-09 08:50:28 +00:00
2017-05-24 00:28:37 +00:00
# https://github.com/proot-me/PRoot/issues/106
proot = self.writeDashBin "proot" ''
export PROOT_NO_SECCOMP=1
exec ${super.proot}/bin/proot "$@"
'';
}