stockholm/krebs/5pkgs/default.nix

27 lines
899 B
Nix
Raw Normal View History

2017-05-23 23:44:17 +02:00
pkgs: oldpkgs:
2016-10-20 20:54:38 +02:00
with import <stockholm/lib>;
{}
// import ./haskell pkgs oldpkgs
// import ./simple pkgs oldpkgs
// import ./test pkgs oldpkgs
2017-05-23 23:44:17 +02:00
// import ./writers.nix pkgs oldpkgs
// {
ReaktorPlugins = pkgs.callPackage ./simple/Reaktor/plugins.nix {};
buildbot-full = pkgs.callPackage ./simple/buildbot {
2016-11-15 23:26:55 +01:00
plugins = with pkgs.buildbot-plugins; [ www console-view waterfall-view ];
};
buildbot-worker = pkgs.callPackage ./simple/buildbot/worker.nix {};
2016-11-15 23:26:55 +01:00
2017-02-09 09:50:28 +01:00
# https://github.com/proot-me/PRoot/issues/106
proot = pkgs.writeDashBin "proot" ''
export PROOT_NO_SECCOMP=1
exec ${oldpkgs.proot}/bin/proot "$@"
'';
2017-02-09 09:50:28 +01:00
2016-05-19 23:55:29 +02:00
# XXX symlinkJoin changed arguments somewhere around nixpkgs d541e0d
symlinkJoin = { name, paths, ... }@args: let
x = oldpkgs.symlinkJoin args;
in if typeOf x != "lambda" then x else oldpkgs.symlinkJoin name paths;
2017-05-23 23:44:17 +02:00
}