1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-15 09:03:48 +00:00
nixpkgs/pkgs/development/ocaml-modules/estring/default.nix

22 lines
556 B
Nix
Raw Normal View History

{ lib, buildOcaml, ocaml, fetchurl }:
if lib.versionAtLeast ocaml.version "4.06"
then throw "estring is not available for OCaml ${ocaml.version}"
else
2016-06-01 16:04:14 +01:00
buildOcaml rec {
2021-10-31 12:35:20 +00:00
pname = "estring";
2016-06-01 16:04:14 +01:00
version = "1.3";
src = fetchurl {
url = "https://forge.ocamlcore.org/frs/download.php/1012/estring-${version}.tar.gz";
sha256 = "0b6znz5igm8pp28w4b7sgy82rpd9m5aw6ss933rfbw1mrh05gvcg";
};
meta = with lib; {
homepage = "http://estring.forge.ocamlcore.org/";
2016-06-01 16:04:14 +01:00
description = "Extension for string literals";
license = licenses.bsd3;
};
}