depot/third_party/nixpkgs/pkgs/development/ocaml-modules/textutils/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

23 lines
658 B
Nix

{stdenv, buildOcaml, fetchurl, core_p4, pa_ounit, pa_test, sexplib_p4}:
buildOcaml rec {
name = "textutils";
version = "112.17.00";
minimalSupportedOcamlVersion = "4.02";
src = fetchurl {
url = "https://github.com/janestreet/textutils/archive/${version}.tar.gz";
sha256 = "605d9fde66dc2d777721c936aa521e17169c143efaf9ff29619a7f273a7d0052";
};
buildInputs = [ pa_test ];
propagatedBuildInputs = [ core_p4 pa_ounit sexplib_p4 ];
meta = with stdenv.lib; {
homepage = "https://github.com/janestreet/textutils";
description = "";
license = stdenv.lib.licenses.asl20;
maintainers = [ maintainers.ericbmerritt ];
};
}