File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 1212 hash ? lib . fakeHash ,
1313} :
1414let
15- pluginsSorted = builtins . sort builtins . lessThan plugins ;
15+ pluginsSorted = lib . sort lib . lessThan plugins ;
1616 pluginsList = lib . concatMapStrings ( plugin : "${ plugin } -" ) pluginsSorted ;
1717 pluginsHash = builtins . hashString "md5" pluginsList ;
18- pluginsWithoutVersion = builtins . filter ( p : ! lib . hasInfix "@" p ) pluginsSorted ;
18+ pluginsWithoutVersion = lib . filter ( p : ! lib . hasInfix "@" p ) pluginsSorted ;
1919in
2020assert lib . assertMsg (
21- builtins . length pluginsWithoutVersion == 0
22- ) "All plugins should have a version (eg ${ builtins . elemAt pluginsWithoutVersion 0 } @x.y.z)!" ;
21+ lib . length pluginsWithoutVersion == 0
22+ ) "All plugins should have a version (eg ${ lib . elemAt pluginsWithoutVersion 0 } @x.y.z)!" ;
2323caddy . overrideAttrs (
2424 finalAttrs : prevAttrs : {
2525 vendorHash = null ;
You can’t perform that action at this time.
0 commit comments