1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-20 12:59:25 +00:00
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 10:20:13 +01:00
buildDunePackage rec {
pname = "re";
version = "1.9.0";
minimumOCamlVersion = "4.02";
2015-03-19 18:13:39 +00:00
src = fetchzip {
2017-10-17 13:52:22 +01:00
url = "https://github.com/ocaml/ocaml-re/archive/${version}.tar.gz";
sha256 = "07ycb103mr4mrkxfd63cwlsn023xvcjp0ra0k7n2gwrg0mwxmfss";
};
buildInputs = [ ounit ];
2018-09-05 18:14:47 +01:00
propagatedBuildInputs = [ seq ];
2018-06-24 10:20:13 +01: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 ];
};
}