2022-03-05 16:20:37 +00:00
|
|
|
|
{ lib, mkCoqDerivation, coq, mathcomp-algebra, mathcomp-finmap, mathcomp-fingroup
|
2023-03-15 16:39:30 +00:00
|
|
|
|
, fourcolor, hierarchy-builder, version ? null }:
|
2021-08-05 21:33:18 +00:00
|
|
|
|
|
|
|
|
|
mkCoqDerivation {
|
|
|
|
|
pname = "graph-theory";
|
|
|
|
|
|
|
|
|
|
release."0.9".sha256 = "sha256-Hl3JS9YERD8QQziXqZ9DqLHKp63RKI9HxoFYWSkJQZI=";
|
2023-03-15 16:39:30 +00:00
|
|
|
|
release."0.9.1".sha256 = "sha256-lRRY+501x+DqNeItBnbwYIqWLDksinWIY4x/iojRNYU=";
|
2021-08-05 21:33:18 +00:00
|
|
|
|
|
|
|
|
|
releaseRev = v: "v${v}";
|
|
|
|
|
|
|
|
|
|
inherit version;
|
2023-02-02 18:25:31 +00:00
|
|
|
|
defaultVersion = with lib.versions; lib.switch coq.coq-version [
|
2023-03-15 16:39:30 +00:00
|
|
|
|
{ case = range "8.14" "8.16"; out = "0.9.1"; }
|
|
|
|
|
{ case = range "8.12" "8.12"; out = "0.9"; }
|
2021-08-05 21:33:18 +00:00
|
|
|
|
] null;
|
|
|
|
|
|
2023-03-15 16:39:30 +00:00
|
|
|
|
propagatedBuildInputs = [ mathcomp-algebra mathcomp-finmap mathcomp-fingroup fourcolor hierarchy-builder ];
|
2021-08-05 21:33:18 +00:00
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
|
meta = with lib; {
|
2021-08-05 21:33:18 +00:00
|
|
|
|
description = "Library of formalized graph theory results in Coq";
|
|
|
|
|
longDescription = ''
|
|
|
|
|
A library of formalized graph theory results, including various
|
|
|
|
|
standard results from the literature (e.g., Menger’s Theorem, Hall’s
|
|
|
|
|
Marriage Theorem, and the excluded minor characterization of
|
|
|
|
|
treewidth-two graphs) as well as some more recent results arising from
|
|
|
|
|
the study of relation algebra within the ERC CoVeCe project (e.g.,
|
|
|
|
|
soundness and completeness of an axiomatization of graph isomorphism).
|
|
|
|
|
'';
|
|
|
|
|
maintainers = with maintainers; [ siraben ];
|
|
|
|
|
license = licenses.cecill-b;
|
|
|
|
|
};
|
|
|
|
|
}
|