diff options
author | lassulus <lass@lassul.us> | 2017-05-23 23:47:36 +0200 |
---|---|---|
committer | lassulus <lass@lassul.us> | 2017-05-23 23:47:36 +0200 |
commit | 84fd61064314fe7b0abaf6d99aa64d3e101763cf (patch) | |
tree | 1d43d0072fc479c7022e3cd3b9810aa7b90e1db3 /krebs/5pkgs/default.nix | |
parent | 90f6d9f228029233d38a86a520a0e532cc5e499f (diff) | |
parent | 061e702a6fc0e6046d39c3975c9034a69499c45f (diff) |
Merge remote-tracking branch 'ni/master'
Diffstat (limited to 'krebs/5pkgs/default.nix')
-rw-r--r-- | krebs/5pkgs/default.nix | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/krebs/5pkgs/default.nix b/krebs/5pkgs/default.nix index 8bb244cd3..81481e14b 100644 --- a/krebs/5pkgs/default.nix +++ b/krebs/5pkgs/default.nix @@ -1,11 +1,6 @@ -{ config, lib, pkgs, ... }@args: +pkgs: oldpkgs: with import <stockholm/lib>; -{ - imports = [ - ./writers.nix - ]; - nixpkgs.config.packageOverrides = oldpkgs: let - + let # This callPackage will try to detect obsolete overrides. callPackage = path: args: let override = pkgs.callPackage path args; @@ -16,8 +11,8 @@ with import <stockholm/lib>; compareVersions upstream.name override.name != -1 then trace "Upstream `${upstream.name}' gets overridden by `${override.name}'." override else override; - in {} + // import ./writers.nix pkgs oldpkgs // mapAttrs (_: flip callPackage {}) (filterAttrs (_: dir: pathExists (dir + "/default.nix")) (subdirsOf ./.)) @@ -60,5 +55,4 @@ with import <stockholm/lib>; test = { infest-cac-centos7 = callPackage ./test/infest-cac-centos7 {}; }; - }; -} + } |