2020-08-28 21:05:46 +00:00
|
|
|
{ lib, mkCoqDerivation, coq, bignums, version ? null }:
|
2017-01-25 21:55:43 +00:00
|
|
|
|
2023-01-21 22:19:48 +00:00
|
|
|
mkCoqDerivation {
|
2017-10-29 17:56:03 +00:00
|
|
|
|
2020-08-28 21:05:46 +00:00
|
|
|
pname = "math-classes";
|
|
|
|
inherit version;
|
2023-05-24 08:50:00 +00:00
|
|
|
defaultVersion = with lib.versions; lib.switch coq.coq-version [
|
|
|
|
{ case = range "8.12" "8.17"; out = "8.17.0"; }
|
|
|
|
{ case = range "8.6" "8.16"; out = "8.15.0"; }
|
|
|
|
] null;
|
2021-01-21 12:32:38 +00:00
|
|
|
release."8.12.0".sha256 = "14nd6a08zncrl5yg2gzk0xf4iinwq4hxnsgm4fyv07ydbkxfb425";
|
2021-07-17 14:25:34 +00:00
|
|
|
release."8.13.0".sha256 = "1ln7ziivfbxzbdvlhbvyg3v30jgblncmwcsam6gg3d1zz6r7cbby";
|
2022-01-24 08:50:45 +00:00
|
|
|
release."8.15.0".sha256 = "10w1hm537k6jx8a8vghq1yx12rsa0sjk2ipv3scgir71ln30hllw";
|
2023-05-24 08:50:00 +00:00
|
|
|
release."8.17.0".sha256 = "sha256-WklL8pgYTd0l4TGt7h7tWj1qcFcXvoPn25+XKF1pIKA=";
|
2017-01-25 21:55:43 +00:00
|
|
|
|
2021-02-19 18:34:30 +00:00
|
|
|
propagatedBuildInputs = [ bignums ];
|
2017-01-25 21:55:43 +00:00
|
|
|
|
2020-08-28 21:05:46 +00:00
|
|
|
meta = {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://math-classes.github.io";
|
2017-01-25 21:55:43 +00:00
|
|
|
description = "A library of abstract interfaces for mathematical structures in Coq.";
|
2023-01-21 22:19:48 +00:00
|
|
|
maintainers = with lib.maintainers; [ siddharthist jwiegley ];
|
2017-01-25 21:55:43 +00:00
|
|
|
};
|
|
|
|
}
|