2021-06-07 17:22:36 +00:00
|
|
|
{ lib, mkCoqDerivation, coq, ssreflect, version ? null }:
|
|
|
|
|
|
|
|
mkCoqDerivation {
|
|
|
|
pname = "reglang";
|
|
|
|
|
|
|
|
releaseRev = v: "v${v}";
|
|
|
|
|
2023-06-08 19:37:02 +00:00
|
|
|
release."1.1.3".sha256 = "sha256-kaselYm8K0JBsTlcI6K24m8qpv8CZ9+VNDJrOtFaExg=";
|
2021-06-07 17:22:36 +00:00
|
|
|
release."1.1.2".sha256 = "sha256-SEnMilLNxh6a3oiDNGLaBr8quQ/nO2T9Fwdf/1il2Yk=";
|
|
|
|
|
|
|
|
inherit version;
|
2023-01-21 22:19:48 +00:00
|
|
|
defaultVersion = with lib.versions; lib.switch coq.coq-version [
|
2023-09-01 08:11:49 +00:00
|
|
|
{ case = range "8.10" "8.18"; out = "1.1.3"; }
|
2021-06-07 17:22:36 +00:00
|
|
|
] null;
|
|
|
|
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ ssreflect ];
|
|
|
|
|
2023-01-21 22:19:48 +00:00
|
|
|
meta = with lib; {
|
2021-06-07 17:22:36 +00:00
|
|
|
description = "Regular Language Representations in Coq";
|
|
|
|
maintainers = with maintainers; [ siraben ];
|
|
|
|
license = licenses.cecill-b;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|