From 4794aa5de233b5bf2d1c3245946379699d023467 Mon Sep 17 00:00:00 2001 From: Silvan Mosberger Date: Thu, 12 Jul 2018 02:04:06 +0200 Subject: [PATCH] Revert "lib: Use lib.fixed-points.extends to avoid repetition" This reverts commit 48ccdf322d9e7a68d0caf5833511ee3e53ec7d3a. --- lib/customisation.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/customisation.nix b/lib/customisation.nix index 9017319420c..d942f54ee79 100644 --- a/lib/customisation.nix +++ b/lib/customisation.nix @@ -202,7 +202,7 @@ rec { callPackage = self.newScope {}; overrideScope = g: makeScope newScope - (lib.fixed-points.extends f g); + (self_: let super = f self_; in super // g super self_); packages = f; }; in self;