mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
29 lines
860 B
Nix
29 lines
860 B
Nix
{ stdenv, fetchzip, ocaml, findlib, ounit }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "ocaml-re-1.4.1";
|
|
|
|
src = fetchzip {
|
|
url = "https://github.com/ocaml/ocaml-re/archive/${name}.tar.gz";
|
|
sha256 = "1wmfgazydd20hc796zisqpmsw0sb5lv9g3x77ckmf50v3z8hyhvk";
|
|
};
|
|
|
|
buildInputs = [ ocaml findlib ounit ];
|
|
|
|
configurePhase = "ocaml setup.ml -configure --prefix $out --enable-tests";
|
|
buildPhase = "ocaml setup.ml -build";
|
|
doCheck = true;
|
|
checkPhase = "ocaml setup.ml -test";
|
|
installPhase = "ocaml setup.ml -install";
|
|
|
|
createFindlibDestdir = true;
|
|
|
|
meta = {
|
|
homepage = https://github.com/ocaml/ocaml-re;
|
|
platforms = ocaml.meta.platforms;
|
|
description = "Pure OCaml regular expressions, with support for Perl and POSIX-style strings";
|
|
license = stdenv.lib.licenses.lgpl2;
|
|
maintainers = with stdenv.lib.maintainers; [ vbgl ];
|
|
};
|
|
}
|