biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / coq-modules / mathcomp-real-closed / default.nix
blob28ff7a56786f2ac5784ffdd70f6c1f1e4fd958a1
1 { coq, mkCoqDerivation, mathcomp, mathcomp-bigenough,
2   lib, version ? null }:
4 mkCoqDerivation {
6   namePrefix = [ "coq" "mathcomp" ];
7   pname = "real-closed";
8   owner = "math-comp";
9   inherit version;
10   release = {
11     "2.0.0".sha256 = "sha256-sZvfiC5+5Lg4nRhfKKqyFzovCj2foAhqaq/w9F2bdU8=";
12     "1.1.4".sha256 = "sha256-8Hs6XfowbpeRD8RhMRf4ZJe2xf8kE0e8m7bPUzR/IM4=";
13     "1.1.3".sha256 = "1vwmmnzy8i4f203i2s60dn9i0kr27lsmwlqlyyzdpsghvbr8h5b7";
14     "1.1.2".sha256 = "0907x4nf7nnvn764q3x9lx41g74rilvq5cki5ziwgpsdgb98pppn";
15     "1.1.1".sha256 = "0ksjscrgq1i79vys4zrmgvzy2y4ylxa8wdsf4kih63apw6v5ws6b";
16     "1.0.5".sha256 = "0q8nkxr9fba4naylr5xk7hfxsqzq2pvwlg1j0xxlhlgr3fmlavg2";
17     "1.0.4".sha256 = "058v9dj973h9kfhqmvcy9a6xhhxzljr90cf99hdfcdx68fi2ha1b";
18     "1.0.3".sha256 = "1xbzkzqgw5p42dx1liy6wy8lzdk39zwd6j14fwvv5735k660z7yb";
19     "1.0.1".sha256 = "0j81gkjbza5vg89v4n9z598mfdbql416963rj4b8fzm7dp2r4rxg";
20   };
22   defaultVersion = with lib.versions; lib.switch [ coq.version mathcomp.version ]  [
23       { cases = [ (isGe "8.16")  (isGe "2.0.0") ]; out = "2.0.0"; }
24       { cases = [ (isGe "8.13")  (range "1.13.0" "1.19.0") ]; out = "1.1.4"; }
25       { cases = [ (isGe "8.13")  (range "1.12.0" "1.18.0") ]; out = "1.1.3"; }
26       { cases = [ (isGe "8.10")  (range "1.12.0" "1.18.0") ]; out = "1.1.2"; }
27       { cases = [ (isGe "8.7")   "1.11.0" ]; out = "1.1.1"; }
28       { cases = [ (isGe "8.7")   (range "1.9.0" "1.10.0") ]; out = "1.0.4"; }
29       { cases = [ (isGe "8.7")   "1.8.0"  ]; out = "1.0.3"; }
30       { cases = [ (isGe "8.7")   "1.7.0"  ]; out = "1.0.1"; }
31     ] null;
33   propagatedBuildInputs = [
34     mathcomp.ssreflect
35     mathcomp.algebra
36     mathcomp.field
37     mathcomp.fingroup
38     mathcomp.solvable
39     mathcomp-bigenough
40   ];
42   meta = {
43     description = "Mathematical Components Library on real closed fields";
44     license = lib.licenses.cecill-c;
45   };