summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2013-10-24 14:48:02 +0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2013-10-24 14:49:59 +0200
commita4f1f4b3673727ddbc5758ea5f0836d013fcc111 (patch)
tree746c3800413f1f1d1b3d664de227cecc4cba272e
parent0d76e1cb94ffda0412da9e33e1fd554198248732 (diff)
Small cleanup
-rw-r--r--lib/misc.nix4
-rw-r--r--lib/modules.nix3
2 files changed, 2 insertions, 5 deletions
diff --git a/lib/misc.nix b/lib/misc.nix
index 19e5081009de..c128b9af9d8c 100644
--- a/lib/misc.nix
+++ b/lib/misc.nix
@@ -206,9 +206,7 @@ rec {
in
work startSet [] [];
- genericClosure =
- if builtins ? genericClosure then builtins.genericClosure
- else lazyGenericClosure;
+ genericClosure = builtins.genericClosure or lazyGenericClosure;
innerModifySumArgs = f: x: a: b: if b == null then (f a b) // x else
innerModifySumArgs f x (a // b);
diff --git a/lib/modules.nix b/lib/modules.nix
index acd10e7bf576..f914947e7849 100644
--- a/lib/modules.nix
+++ b/lib/modules.nix
@@ -185,8 +185,7 @@ rec {
) funs;
- moduleMerge = path: modules:
- let modules_ = modules; in
+ moduleMerge = path: modules_:
let
addName = name:
if path == "" then name else path + "." + name;