summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorRicardo M. Correia <rcorreia@wizy.org>2016-06-01 17:04:14 +0200
committerRicardo M. Correia <rcorreia@wizy.org>2016-06-02 18:04:41 +0200
commit58fb33a08d5ac70138ab93d676392e135b03ac2e (patch)
treee012d104d1e6f21f2973719afc84af323a68a9c7 /pkgs/development/ocaml-modules
parentc544cbca42beb5b33e174127f82bc3caf50906a9 (diff)
downloadnixpkgs-58fb33a08d5ac70138ab93d676392e135b03ac2e.tar
nixpkgs-58fb33a08d5ac70138ab93d676392e135b03ac2e.tar.gz
nixpkgs-58fb33a08d5ac70138ab93d676392e135b03ac2e.tar.bz2
nixpkgs-58fb33a08d5ac70138ab93d676392e135b03ac2e.tar.lz
nixpkgs-58fb33a08d5ac70138ab93d676392e135b03ac2e.tar.xz
nixpkgs-58fb33a08d5ac70138ab93d676392e135b03ac2e.tar.zst
nixpkgs-58fb33a08d5ac70138ab93d676392e135b03ac2e.zip
ocamlPackages.estring: init at 1.3
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/estring/default.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/estring/default.nix b/pkgs/development/ocaml-modules/estring/default.nix
new file mode 100644
index 00000000000..8bfab87fc39
--- /dev/null
+++ b/pkgs/development/ocaml-modules/estring/default.nix
@@ -0,0 +1,17 @@
+{ stdenv, buildOcaml, fetchurl }:
+
+buildOcaml rec {
+  name = "estring";
+  version = "1.3";
+
+  src = fetchurl {
+    url = "https://forge.ocamlcore.org/frs/download.php/1012/estring-${version}.tar.gz";
+    sha256 = "0b6znz5igm8pp28w4b7sgy82rpd9m5aw6ss933rfbw1mrh05gvcg";
+  };
+
+  meta = with stdenv.lib; {
+    homepage = "http://estring.forge.ocamlcore.org/";
+    description = "Extension for string literals";
+    license = licenses.bsd3;
+  };
+}