Skip to content

Commit 35b2159

Browse files
committedFeb 15, 2017
Merge branch 'master' into staging
Over 11k rebuilds on master.
2 parents f228ea5 + b1bfe9d commit 35b2159

File tree

133 files changed

+1838
-1144
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

133 files changed

+1838
-1144
lines changed
 

‎lib/customisation.nix

+3-5
Original file line numberDiff line numberDiff line change
@@ -106,11 +106,9 @@ rec {
106106
let
107107
f = if builtins.isFunction fn then fn else import fn;
108108
auto = builtins.intersectAttrs (builtins.functionArgs f) autoArgs;
109-
finalArgs = auto // args;
110-
pkgs = f finalArgs;
111-
mkAttrOverridable = name: pkg: pkg // {
112-
override = newArgs: mkAttrOverridable name (f (finalArgs // newArgs)).${name};
113-
};
109+
origArgs = auto // args;
110+
pkgs = f origArgs;
111+
mkAttrOverridable = name: pkg: makeOverridable (newArgs: (f newArgs).${name}) origArgs;
114112
in lib.mapAttrs mkAttrOverridable pkgs;
115113

116114

‎lib/maintainers.nix

+2-1
Original file line numberDiff line numberDiff line change
@@ -344,6 +344,7 @@
344344
nico202 = "Nicolò Balzarotti <anothersms@gmail.com>";
345345
NikolaMandic = "Ratko Mladic <nikola@mandic.email>";
346346
nixy = "Andrew R. M. <andrewmiller237@gmail.com>";
347+
nocoolnametom = "Tom Doggett <nocoolnametom@gmail.com>";
347348
notthemessiah = "Brian Cohen <brian.cohen.88@gmail.com>";
348349
np = "Nicolas Pouillard <np.nix@nicolaspouillard.fr>";
349350
nslqqq = "Nikita Mikhailov <nslqqq@gmail.com>";
@@ -490,7 +491,7 @@
490491
travisbhartwell = "Travis B. Hartwell <nafai@travishartwell.net>";
491492
trino = "Hubert Mühlhans <muehlhans.hubert@ekodia.de>";
492493
tstrobel = "Thomas Strobel <4ZKTUB6TEP74PYJOPWIR013S2AV29YUBW5F9ZH2F4D5UMJUJ6S@hash.domains>";
493-
ttuegel = "Thomas Tuegel <ttuegel@gmail.com>";
494+
ttuegel = "Thomas Tuegel <ttuegel@mailbox.org>";
494495
tv = "Tomislav Viljetić <tv@shackspace.de>";
495496
tvestelind = "Tomas Vestelind <tomas.vestelind@fripost.org>";
496497
tvorog = "Marsel Zaripov <marszaripov@gmail.com>";

0 commit comments

Comments
 (0)