2021-06-28 23:13:55 +00:00
|
|
|
{ lib, mkCoqDerivation, coq, ssreflect, version ? null }:
|
|
|
|
|
|
|
|
mkCoqDerivation {
|
|
|
|
pname = "reglang";
|
|
|
|
|
|
|
|
releaseRev = v: "v${v}";
|
|
|
|
|
2023-07-15 17:15:38 +00:00
|
|
|
release."1.1.3".sha256 = "sha256-kaselYm8K0JBsTlcI6K24m8qpv8CZ9+VNDJrOtFaExg=";
|
2021-06-28 23:13:55 +00:00
|
|
|
release."1.1.2".sha256 = "sha256-SEnMilLNxh6a3oiDNGLaBr8quQ/nO2T9Fwdf/1il2Yk=";
|
|
|
|
|
|
|
|
inherit version;
|
2023-02-02 18:25:31 +00:00
|
|
|
defaultVersion = with lib.versions; lib.switch coq.coq-version [
|
2023-10-09 19:29:22 +00:00
|
|
|
{ case = range "8.10" "8.18"; out = "1.1.3"; }
|
2021-06-28 23:13:55 +00:00
|
|
|
] null;
|
|
|
|
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ ssreflect ];
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
meta = with lib; {
|
2021-06-28 23:13:55 +00:00
|
|
|
description = "Regular Language Representations in Coq";
|
|
|
|
maintainers = with maintainers; [ siraben ];
|
|
|
|
license = licenses.cecill-b;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|