##// END OF EJS Templates
nix: use common formatting on inherit keyword.
marcink -
r3143:c1d138a0 default
parent child Browse files
Show More
@@ -62,7 +62,11 b' let'
62 62
63 63 sources =
64 64 let
65 inherit (pkgs.lib) all isString attrValues;
65 inherit
66 (pkgs.lib)
67 all
68 isString
69 attrValues;
66 70 sourcesConfig = pkgs.config.rc.sources or {};
67 71 in
68 72 # Ensure that sources are configured as strings. Using a path
@@ -75,7 +79,8 b' let'
75 79
76 80 buildBowerComponents = pkgs.buildBowerComponents;
77 81 nodeEnv = import ./pkgs/node-default.nix {
78 inherit pkgs;
82 inherit
83 pkgs;
79 84 };
80 85 nodeDependencies = nodeEnv.shell.nodeDependencies;
81 86
@@ -261,8 +266,13 b' let'
261 266 getAttr pythonPackages pkgs;
262 267
263 268 pythonGeneratedPackages = import ./pkgs/python-packages.nix {
264 inherit pkgs;
265 inherit (pkgs) fetchurl fetchgit fetchhg;
269 inherit
270 pkgs;
271 inherit
272 (pkgs)
273 fetchurl
274 fetchgit
275 fetchhg;
266 276 };
267 277
268 278 pythonCommunityOverrides = import ./pkgs/python-packages-overrides.nix {
@@ -50,7 +50,10 b' let'
50 50 nixFile = "${path}/default.nix";
51 51
52 52 derivate = import "${nixFile}" {
53 inherit doCheck pkgs pythonPackages;
53 inherit
54 doCheck
55 pkgs
56 pythonPackages;
54 57 };
55 58 in
56 59 pkgs.lib.lists.optionals doIt (
General Comments 0
You need to be logged in to leave comments. Login now