Commit 2444d787 authored by Pierre Roux's avatar Pierre Roux Committed by Vincent Laporte
Browse files

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

parent a9c0c91c
Loading
Loading
Loading
Loading
+8 −2
Original line number Diff line number Diff line
@@ -4,10 +4,11 @@
  coq,
  bignums,
  math-classes,
  coq-elpi,
  version ? null,
}:

mkCoqDerivation rec {
(mkCoqDerivation rec {
  pname = "corn";
  inherit version;
  defaultVersion =
@@ -59,4 +60,9 @@ mkCoqDerivation rec {
    description = "Coq library for constructive analysis";
    maintainers = [ maintainers.vbgl ];
  };
}
}).overrideAttrs
  (o: {
    propagatedBuildInputs =
      o.propagatedBuildInputs
      ++ lib.optional (lib.versions.isGt "8.19.0" o.version || o.version == "dev") coq-elpi;
  })