stockholm/krebs/5pkgs/default.nix

34 lines
958 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
{
ReaktorPlugins = self.callPackage ./simple/Reaktor/plugins.nix {};
2017-02-09 08:50:28 +00:00
2017-05-24 00:28:37 +00:00
buildbot-full = self.callPackage ./simple/buildbot {
plugins = with self.buildbot-plugins; [ www console-view waterfall-view ];
};
buildbot-worker = self.callPackage ./simple/buildbot/worker.nix {};
# https://github.com/proot-me/PRoot/issues/106
proot = self.writeDashBin "proot" ''
export PROOT_NO_SECCOMP=1
exec ${super.proot}/bin/proot "$@"
'';
# XXX symlinkJoin changed arguments somewhere around nixpkgs d541e0d
symlinkJoin = { name, paths, ... }@args: let
x = super.symlinkJoin args;
in if typeOf x != "lambda" then x else super.symlinkJoin name paths;
}