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

25 lines
660 B
Nix
Raw Normal View History

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