Avoid top-level with ...;
in pkgs/build-support/coq/extra-lib.nix
This commit is contained in:
parent
102a33d30e
commit
c4d420345d
1 changed files with 21 additions and 1 deletions
|
@ -1,5 +1,25 @@
|
||||||
{ lib }:
|
{ lib }:
|
||||||
with builtins; with lib; recursiveUpdate lib (rec {
|
|
||||||
|
let
|
||||||
|
inherit (lib)
|
||||||
|
all
|
||||||
|
concatStringsSep
|
||||||
|
findFirst
|
||||||
|
flip
|
||||||
|
getAttr
|
||||||
|
head
|
||||||
|
isFunction
|
||||||
|
length
|
||||||
|
recursiveUpdate
|
||||||
|
splitVersion
|
||||||
|
tail
|
||||||
|
take
|
||||||
|
versionAtLeast
|
||||||
|
versionOlder
|
||||||
|
zipListsWith
|
||||||
|
;
|
||||||
|
in
|
||||||
|
recursiveUpdate lib (rec {
|
||||||
|
|
||||||
versions =
|
versions =
|
||||||
let
|
let
|
||||||
|
|
Loading…
Reference in a new issue