summary refs log tree commit diff
path: root/lib/customisation.nix
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2017-09-29 09:09:53 -0400
committerShea Levy <shea@shealevy.com>2017-09-29 09:09:53 -0400
commitd96da5af876db7d5839a048980853a0b294b59e7 (patch)
tree28a6ca26fdd053d0c84631d86790cdc95808bb7e /lib/customisation.nix
parent4f132afa5bdc390e916bbd3c54d603498b552583 (diff)
downloadnixpkgs-d96da5af876db7d5839a048980853a0b294b59e7.tar
nixpkgs-d96da5af876db7d5839a048980853a0b294b59e7.tar.gz
nixpkgs-d96da5af876db7d5839a048980853a0b294b59e7.tar.bz2
nixpkgs-d96da5af876db7d5839a048980853a0b294b59e7.tar.lz
nixpkgs-d96da5af876db7d5839a048980853a0b294b59e7.tar.xz
nixpkgs-d96da5af876db7d5839a048980853a0b294b59e7.tar.zst
nixpkgs-d96da5af876db7d5839a048980853a0b294b59e7.zip
Revert "Avoid polluting lib namespace unncessarily"
Reverting #27319

This reverts commit 01a3f0b8aabdb321b15dc7cc0e2287ce8232f797.
Diffstat (limited to 'lib/customisation.nix')
-rw-r--r--lib/customisation.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/customisation.nix b/lib/customisation.nix
index 304bb228449..217daada781 100644
--- a/lib/customisation.nix
+++ b/lib/customisation.nix
@@ -81,7 +81,7 @@ rec {
         });
       };
 
-  in lib.fixedPoints.makeExtensibleWithInterface (x: o: interface (addOverrideFuncs x o) o) (output: self: {
+  in lib.makeExtensibleWithInterface (x: o: interface (addOverrideFuncs x o) o) (output: self: {
     args = origArgs;
     val = f output self.args self.val;
   });