mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-13 09:13:17 +00:00
c2892b3fc9
* coqPackages.mathcomp: 1.17.0 -> 1.18.0 * coqPackages.mathcomp-analysis: 0.6.5 -> 0.6.6
29 lines
1.2 KiB
Nix
29 lines
1.2 KiB
Nix
{ lib, mkCoqDerivation, coq, mathcomp-algebra, mathcomp-ssreflect, mathcomp-fingroup, version ? null }:
|
|
|
|
mkCoqDerivation rec {
|
|
namePrefix = [ "coq" "mathcomp" ];
|
|
pname = "zify";
|
|
repo = "mczify";
|
|
owner = "math-comp";
|
|
inherit version;
|
|
|
|
defaultVersion = with lib.versions;
|
|
lib.switch [ coq.coq-version mathcomp-algebra.version ] [
|
|
{ cases = [ (range "8.16" "8.18") (isGe "2.0.0") ]; out = "1.5.0+2.0+8.16"; }
|
|
{ cases = [ (range "8.13" "8.18") (range "1.12" "1.18.0") ]; out = "1.3.0+1.12+8.13"; }
|
|
{ cases = [ (range "8.13" "8.16") (range "1.12" "1.17.0") ]; out = "1.1.0+1.12+8.13"; }
|
|
] null;
|
|
|
|
release."1.0.0+1.12+8.13".sha256 = "1j533vx6lacr89bj1bf15l1a0s7rvrx4l00wyjv99aczkfbz6h6k";
|
|
release."1.1.0+1.12+8.13".sha256 = "1plf4v6q5j7wvmd5gsqlpiy0vwlw6hy5daq2x42gqny23w9mi2pr";
|
|
release."1.3.0+1.12+8.13".sha256 = "sha256-ebfY8HatP4te44M6o84DSLpDCkMu4IroPCy+HqzOnTE=";
|
|
release."1.5.0+2.0+8.16".sha256 = "sha256-boBYGvXdGFc6aPnjgSZYSoW4kmN5khtNrSV3DUv9DqM=";
|
|
|
|
propagatedBuildInputs = [ mathcomp-algebra mathcomp-ssreflect mathcomp-fingroup ];
|
|
|
|
meta = {
|
|
description = "Micromega tactics for Mathematical Components";
|
|
maintainers = with lib.maintainers; [ cohencyril ];
|
|
};
|
|
}
|