summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/textutils
diff options
context:
space:
mode:
authorEric Merritt <eric@afiniate.com>2015-05-24 10:50:15 -0700
committerEric Merritt <eric@afiniate.com>2015-05-25 10:16:42 -0700
commitda56bd300265ff12b62b1c642dd05f2f8ee50be1 (patch)
treebc8002cffdadce1fa3762a193ae1ac3b1135f21e /pkgs/development/ocaml-modules/textutils
parent59b94c36f82d442cd93709615e1b81fd78ce70e2 (diff)
downloadnixpkgs-da56bd300265ff12b62b1c642dd05f2f8ee50be1.tar
nixpkgs-da56bd300265ff12b62b1c642dd05f2f8ee50be1.tar.gz
nixpkgs-da56bd300265ff12b62b1c642dd05f2f8ee50be1.tar.bz2
nixpkgs-da56bd300265ff12b62b1c642dd05f2f8ee50be1.tar.lz
nixpkgs-da56bd300265ff12b62b1c642dd05f2f8ee50be1.tar.xz
nixpkgs-da56bd300265ff12b62b1c642dd05f2f8ee50be1.tar.zst
nixpkgs-da56bd300265ff12b62b1c642dd05f2f8ee50be1.zip
ocaml-textutils: add initial version (112.17.00) to the system
Diffstat (limited to 'pkgs/development/ocaml-modules/textutils')
-rw-r--r--pkgs/development/ocaml-modules/textutils/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/textutils/default.nix b/pkgs/development/ocaml-modules/textutils/default.nix
new file mode 100644
index 00000000000..377b94eff8b
--- /dev/null
+++ b/pkgs/development/ocaml-modules/textutils/default.nix
@@ -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 ];
+  };
+}