summary refs log tree commit diff
diff options
context:
space:
mode:
authorEric Merritt <eric@afiniate.com>2015-05-21 20:36:10 -0700
committerEric Merritt <eric@afiniate.com>2015-05-24 12:32:52 -0700
commit12c3b11bf4afcd33e46615f19ad24dc9ed6cdf8f (patch)
tree2afc3f880a4015b847dfe2df17951d8469bee1ad
parent21fa39af2ed484e29e53edac125a6b8ebee58c53 (diff)
downloadnixlib-12c3b11bf4afcd33e46615f19ad24dc9ed6cdf8f.tar
nixlib-12c3b11bf4afcd33e46615f19ad24dc9ed6cdf8f.tar.gz
nixlib-12c3b11bf4afcd33e46615f19ad24dc9ed6cdf8f.tar.bz2
nixlib-12c3b11bf4afcd33e46615f19ad24dc9ed6cdf8f.tar.lz
nixlib-12c3b11bf4afcd33e46615f19ad24dc9ed6cdf8f.tar.xz
nixlib-12c3b11bf4afcd33e46615f19ad24dc9ed6cdf8f.tar.zst
nixlib-12c3b11bf4afcd33e46615f19ad24dc9ed6cdf8f.zip
ocaml-pa_ounit: add initial version (112.24.00) to the system
-rw-r--r--pkgs/development/ocaml-modules/pa_ounit/default.nix20
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/pa_ounit/default.nix b/pkgs/development/ocaml-modules/pa_ounit/default.nix
new file mode 100644
index 000000000000..5970aba1e502
--- /dev/null
+++ b/pkgs/development/ocaml-modules/pa_ounit/default.nix
@@ -0,0 +1,20 @@
+{stdenv, buildOcaml, fetchurl, ounit}:
+
+buildOcaml rec {
+  name = "pa_ounit";
+  version = "112.24.00";
+
+  src = fetchurl {
+    url = "https://github.com/janestreet/pa_ounit/archive/${version}.tar.gz";
+    sha256 = "fa04e72fe1db41e6dc64f9707cf5705cb9b957aa93265120c875c808eb9b9b96";
+  };
+
+  propagatedBuildInputs = [ ounit ];
+
+  meta = with stdenv.lib; {
+    homepage = https://github.com/janestreet/pa_ounit;
+    description = "OCaml inline testing";
+    license = licenses.asl20;
+    maintainers = [ maintainers.ericbmerritt ];
+  };
+}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 058a5a49c57d..2bd61bddef80 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -4325,6 +4325,8 @@ let
 
     ocurl = callPackage ../development/ocaml-modules/ocurl { };
 
+    pa_ounit = callPackage ../development/ocaml-modules/pa_ounit { };
+
     pprint = callPackage ../development/ocaml-modules/pprint { };
 
     pycaml = callPackage ../development/ocaml-modules/pycaml { };