nixpkgs/pkgs/development/ocaml-modules/re/default.nix

25 lines
704 B
Nix
Raw Normal View History

{ lib, fetchzip, buildDunePackage, ocaml, ounit, seq }:
2018-06-24 02:20:13 -07:00
buildDunePackage rec {
pname = "re";
version = "1.9.0";
minimumOCamlVersion = "4.02";
2015-03-19 11:13:39 -07:00
src = fetchzip {
2017-10-17 05:52:22 -07:00
url = "https://github.com/ocaml/ocaml-re/archive/${version}.tar.gz";
sha256 = "07ycb103mr4mrkxfd63cwlsn023xvcjp0ra0k7n2gwrg0mwxmfss";
};
buildInputs = lib.optional doCheck ounit;
2018-09-05 10:14:47 -07:00
propagatedBuildInputs = [ seq ];
doCheck = lib.versionAtLeast ocaml.version "4.04";
meta = {
homepage = "https://github.com/ocaml/ocaml-re";
description = "Pure OCaml regular expressions, with support for Perl and POSIX-style strings";
license = lib.licenses.lgpl2;
maintainers = with lib.maintainers; [ vbgl ];
};
}