diff options
Diffstat (limited to 'krebs/5pkgs/default.nix')
-rw-r--r-- | krebs/5pkgs/default.nix | 21 |
1 files changed, 5 insertions, 16 deletions
diff --git a/krebs/5pkgs/default.nix b/krebs/5pkgs/default.nix index eab059165..ea14e02a4 100644 --- a/krebs/5pkgs/default.nix +++ b/krebs/5pkgs/default.nix @@ -1,27 +1,16 @@ pkgs: oldpkgs: with import <stockholm/lib>; - let - # This callPackage will try to detect obsolete overrides. - callPackage = path: args: let - override = pkgs.callPackage path args; - upstream = optionalAttrs (override ? "name") - (oldpkgs.${(parseDrvName override.name).name} or {}); - in if upstream ? "name" && - override ? "name" && - compareVersions upstream.name override.name != -1 - then trace "Upstream `${upstream.name}' gets overridden by `${override.name}'." override - else override; - in {} + {} // import ./haskell pkgs oldpkgs // import ./simple pkgs oldpkgs // import ./writers.nix pkgs oldpkgs // { - ReaktorPlugins = callPackage ./simple/Reaktor/plugins.nix {}; + ReaktorPlugins = pkgs.callPackage ./simple/Reaktor/plugins.nix {}; - buildbot-full = callPackage ./simple/buildbot { + buildbot-full = pkgs.callPackage ./simple/buildbot { plugins = with pkgs.buildbot-plugins; [ www console-view waterfall-view ]; }; - buildbot-worker = callPackage ./simple/buildbot/worker.nix {}; + buildbot-worker = pkgs.callPackage ./simple/buildbot/worker.nix {}; # https://github.com/proot-me/PRoot/issues/106 proot = pkgs.writeDashBin "proot" '' @@ -35,6 +24,6 @@ with import <stockholm/lib>; in if typeOf x != "lambda" then x else oldpkgs.symlinkJoin name paths; test = { - infest-cac-centos7 = callPackage ./test/infest-cac-centos7 {}; + infest-cac-centos7 = pkgs.callPackage ./test/infest-cac-centos7 {}; }; } |