2021-01-11 13:49:15 +01:00
|
|
|
{ lib, buildOcaml, ocaml, fetchurl }:
|
2018-07-23 08:22:46 +02:00
|
|
|
|
2021-01-11 13:49:15 +01:00
|
|
|
if lib.versionAtLeast ocaml.version "4.06"
|
2018-07-23 08:22:46 +02:00
|
|
|
then throw "estring is not available for OCaml ${ocaml.version}"
|
|
|
|
else
|
2016-06-01 17:04:14 +02:00
|
|
|
|
|
|
|
buildOcaml rec {
|
|
|
|
name = "estring";
|
|
|
|
version = "1.3";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://forge.ocamlcore.org/frs/download.php/1012/estring-${version}.tar.gz";
|
|
|
|
sha256 = "0b6znz5igm8pp28w4b7sgy82rpd9m5aw6ss933rfbw1mrh05gvcg";
|
|
|
|
};
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://estring.forge.ocamlcore.org/";
|
2016-06-01 17:04:14 +02:00
|
|
|
description = "Extension for string literals";
|
|
|
|
license = licenses.bsd3;
|
|
|
|
};
|
|
|
|
}
|