about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/textutils/default.nix
blob: 6f0ca82a45380dcc4302515b8657b912cfd76917 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{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 ];
  };
}