From 0f54bf3220331520ffabe1bc1fc445ff694ae39f Mon Sep 17 00:00:00 2001 From: aszlig Date: Sat, 28 May 2016 17:57:29 +0200 Subject: pkgs: Add recurseIntoAttrs for openlab namespace Otherwise, neither nix-env nor packagePlatforms will able to pick up the nested derivations. Signed-off-by: aszlig Cc: @Profpatsch --- pkgs/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'pkgs/default.nix') diff --git a/pkgs/default.nix b/pkgs/default.nix index 11c86efd..674ae29d 100644 --- a/pkgs/default.nix +++ b/pkgs/default.nix @@ -33,6 +33,8 @@ let bfqsched = callPackage ./kpatches/bfqsched { }; }; - openlab.gitit = callPackage ./openlab/gitit { hlib = pkgs.haskell.lib; }; + openlab = pkgs.recurseIntoAttrs { + gitit = callPackage ./openlab/gitit { hlib = pkgs.haskell.lib; }; + }; }; in pkgs // self -- cgit 1.4.1