2022-02-24 15:01:15 +01:00
|
|
|
{ lib, mkCoqDerivation, coq, mathcomp-algebra, mathcomp-ssreflect, mathcomp-fingroup, version ? null }:
|
2021-05-10 15:30:05 +02:00
|
|
|
|
|
|
|
with lib; mkCoqDerivation rec {
|
2021-10-28 16:17:24 +02:00
|
|
|
namePrefix = [ "coq" "mathcomp" ];
|
|
|
|
pname = "zify";
|
2021-05-10 15:30:05 +02:00
|
|
|
repo = "mczify";
|
|
|
|
owner = "math-comp";
|
|
|
|
inherit version;
|
|
|
|
|
|
|
|
defaultVersion = with versions;
|
|
|
|
switch [ coq.coq-version mathcomp-algebra.version ] [
|
2022-01-26 16:54:54 +01:00
|
|
|
{ cases = [ (range "8.13" "8.15") (isGe "1.12") ]; out = "1.1.0+1.12+8.13"; }
|
2021-05-10 15:30:05 +02:00
|
|
|
] null;
|
|
|
|
|
|
|
|
release."1.0.0+1.12+8.13".sha256 = "1j533vx6lacr89bj1bf15l1a0s7rvrx4l00wyjv99aczkfbz6h6k";
|
2021-10-15 12:10:59 +02:00
|
|
|
release."1.1.0+1.12+8.13".sha256 = "1plf4v6q5j7wvmd5gsqlpiy0vwlw6hy5daq2x42gqny23w9mi2pr";
|
2021-05-10 15:30:05 +02:00
|
|
|
|
2022-02-24 15:01:15 +01:00
|
|
|
propagatedBuildInputs = [ mathcomp-algebra mathcomp-ssreflect mathcomp-fingroup ];
|
2021-05-10 15:30:05 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Micromega tactics for Mathematical Components";
|
|
|
|
maintainers = with maintainers; [ cohencyril ];
|
|
|
|
};
|
|
|
|
}
|