2021-04-15 00:37:46 +00:00
|
|
|
{ lib, mkCoqDerivation, coq, version ? null , paco, coq-ext-lib }:
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
mkCoqDerivation rec {
|
2021-04-15 00:37:46 +00:00
|
|
|
pname = "InteractionTrees";
|
|
|
|
owner = "DeepSpec";
|
|
|
|
inherit version;
|
2023-02-02 18:25:31 +00:00
|
|
|
defaultVersion = with lib.versions; lib.switch coq.version [
|
2023-03-15 16:39:30 +00:00
|
|
|
{ case = range "8.13" "8.17"; out = "5.1.0"; }
|
2022-06-16 17:23:12 +00:00
|
|
|
{ case = range "8.10" "8.16"; out = "4.0.0"; }
|
2021-04-15 00:37:46 +00:00
|
|
|
] null;
|
2023-03-15 16:39:30 +00:00
|
|
|
release."5.1.0".sha256 = "sha256-ny7Mi1KgWADiFznkNJiRgD7Djc5SUclNgKOmWRxK+eo=";
|
2021-04-15 00:37:46 +00:00
|
|
|
release."4.0.0".sha256 = "0h5rhndl8syc24hxq1gch86kj7mpmgr89bxp2hmf28fd7028ijsm";
|
|
|
|
releaseRev = v: "${v}";
|
|
|
|
propagatedBuildInputs = [ coq-ext-lib paco ];
|
|
|
|
meta = {
|
|
|
|
description = "A Library for Representing Recursive and Impure Programs in Coq";
|
2023-02-02 18:25:31 +00:00
|
|
|
maintainers = with lib.maintainers; [ larsr ];
|
2021-04-15 00:37:46 +00:00
|
|
|
};
|
|
|
|
}
|