Adds ocaml-stringext
Extra string functions for OCaml Homepage: https://github.com/rgrinberg/stringext
This commit is contained in:
parent
ec61a9ea5a
commit
b6f8d1f6d5
29
pkgs/development/ocaml-modules/stringext/default.nix
Normal file
29
pkgs/development/ocaml-modules/stringext/default.nix
Normal file
@ -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 { };
|
sqlite3EZ = callPackage ../development/ocaml-modules/sqlite3EZ { };
|
||||||
|
|
||||||
|
stringext = callPackage ../development/ocaml-modules/stringext { };
|
||||||
|
|
||||||
twt = callPackage ../development/ocaml-modules/twt { };
|
twt = callPackage ../development/ocaml-modules/twt { };
|
||||||
|
|
||||||
utop = callPackage ../development/tools/ocaml/utop { };
|
utop = callPackage ../development/tools/ocaml/utop { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user