diff --git a/pkgs/development/coq-modules/coq-elpi/default.nix b/pkgs/development/coq-modules/coq-elpi/default.nix index 04dea2feaf60..fe577a149d71 100644 --- a/pkgs/development/coq-modules/coq-elpi/default.nix +++ b/pkgs/development/coq-modules/coq-elpi/default.nix @@ -1,6 +1,6 @@ { lib, mkCoqDerivation, which, coq, version ? null }: -with builtins; with lib; let +let elpi = coq.ocamlPackages.elpi.override (lib.switch coq.coq-version [ { case = "8.11"; out = { version = "1.11.4"; };} { case = "8.12"; out = { version = "1.12.0"; };} @@ -71,7 +71,7 @@ in mkCoqDerivation { meta = { description = "Coq plugin embedding ELPI"; - maintainers = [ maintainers.cohencyril ]; - license = licenses.lgpl21Plus; + maintainers = [ lib.maintainers.cohencyril ]; + license = lib.licenses.lgpl21Plus; }; }