coqPackages.corn: missing coq-elpi dependency for master (> 8.19.0)

authored by Pierre Roux and committed by Vincent Laporte 2444d787 a9c0c91c

+8 -2
+8 -2
pkgs/development/coq-modules/corn/default.nix
··· 4 coq, 5 bignums, 6 math-classes, 7 version ? null, 8 }: 9 10 - mkCoqDerivation rec { 11 pname = "corn"; 12 inherit version; 13 defaultVersion = ··· 59 description = "Coq library for constructive analysis"; 60 maintainers = [ maintainers.vbgl ]; 61 }; 62 - }
··· 4 coq, 5 bignums, 6 math-classes, 7 + coq-elpi, 8 version ? null, 9 }: 10 11 + (mkCoqDerivation rec { 12 pname = "corn"; 13 inherit version; 14 defaultVersion = ··· 60 description = "Coq library for constructive analysis"; 61 maintainers = [ maintainers.vbgl ]; 62 }; 63 + }).overrideAttrs 64 + (o: { 65 + propagatedBuildInputs = 66 + o.propagatedBuildInputs 67 + ++ lib.optional (lib.versions.isGt "8.19.0" o.version || o.version == "dev") coq-elpi; 68 + })