1{ lib, mkCoqDerivation, coq, mathcomp-algebra, version ? null }:
2
3with lib; mkCoqDerivation rec {
4 namePrefix = [ "coq" "mathcomp" ];
5 pname = "zify";
6 repo = "mczify";
7 owner = "math-comp";
8 inherit version;
9
10 defaultVersion = with versions;
11 switch [ coq.coq-version mathcomp-algebra.version ] [
12 { cases = [ (range "8.13" "8.14") (isGe "1.12") ]; out = "1.1.0+1.12+8.13"; }
13 ] null;
14
15 release."1.0.0+1.12+8.13".sha256 = "1j533vx6lacr89bj1bf15l1a0s7rvrx4l00wyjv99aczkfbz6h6k";
16 release."1.1.0+1.12+8.13".sha256 = "1plf4v6q5j7wvmd5gsqlpiy0vwlw6hy5daq2x42gqny23w9mi2pr";
17
18 propagatedBuildInputs = [ mathcomp-algebra ];
19
20 meta = {
21 description = "Micromega tactics for Mathematical Components";
22 maintainers = with maintainers; [ cohencyril ];
23 };
24}