Adds ocaml-stringext

Extra string functions for OCaml

Homepage: https://github.com/rgrinberg/stringext
This commit is contained in:
Vincent Laporte 2015-01-08 00:19:13 +01:00
parent ec61a9ea5a
commit b6f8d1f6d5
2 changed files with 31 additions and 0 deletions

@ -0,0 +1,29 @@
{ stdenv, fetchgit, ocaml, findlib }:
let version = "1.2.0"; in
stdenv.mkDerivation {
name = "ocaml-stringext-${version}";
src = fetchgit {
url = https://github.com/rgrinberg/stringext.git;
rev = "refs/tags/v${version}";
sha256 = "04ixh33225n2fyc0i35pk7h9shxfdg9grhvkxy086zppki3a3vc6";
};
buildInputs = [ ocaml findlib ];
configurePhase = "ocaml setup.ml -configure --prefix $out";
buildPhase = "ocaml setup.ml -build";
installPhase = "ocaml setup.ml -install";
createFindlibDestdir = true;
meta = {
homepage = https://github.com/rgrinberg/stringext;
platforms = ocaml.meta.platforms;
description = "Extra string functions for OCaml";
license = stdenv.lib.licenses.mit;
maintainers = with stdenv.lib.maintainers; [ vbgl ];
};
}

@ -3861,6 +3861,8 @@ let
sqlite3EZ = callPackage ../development/ocaml-modules/sqlite3EZ { };
stringext = callPackage ../development/ocaml-modules/stringext { };
twt = callPackage ../development/ocaml-modules/twt { };
utop = callPackage ../development/tools/ocaml/utop { };