ocaml-textutils: add initial version (112.17.00) to the system
This commit is contained in:
parent
59b94c36f8
commit
da56bd3002
23
pkgs/development/ocaml-modules/textutils/default.nix
Normal file
23
pkgs/development/ocaml-modules/textutils/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{stdenv, buildOcaml, fetchurl, core, pa_ounit, pa_test, sexplib}:
|
||||
|
||||
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 pa_ounit sexplib ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/janestreet/textutils;
|
||||
description = "";
|
||||
license = stdenv.lib.licenses.asl20;
|
||||
maintainers = [ maintainers.ericbmerritt ];
|
||||
};
|
||||
}
|
@ -4325,6 +4325,8 @@ let
|
||||
camlp5 = camlp5_transitional;
|
||||
};
|
||||
|
||||
textutils = callPackage ../development/ocaml-modules/textutils { };
|
||||
|
||||
type_conv_108_08_00 = callPackage ../development/ocaml-modules/type_conv/108.08.00.nix { };
|
||||
type_conv_109_60_01 = callPackage ../development/ocaml-modules/type_conv/109.60.01.nix { };
|
||||
type_conv_112_01_01 = callPackage ../development/ocaml-modules/type_conv/112.01.01.nix { };
|
||||
|
Loading…
Reference in New Issue
Block a user