summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorEric Merritt <eric@afiniate.com>2015-05-15 09:29:22 -0500
committerEric Merritt <eric@afiniate.com>2015-05-24 12:32:55 -0700
commit48c98e12d2b7651efc93e7f0ccb4d54cb3c8f12a (patch)
tree4b3bb2b6d001c516009233c4389d20b3bf970f7e /pkgs/development/ocaml-modules
parent74b9ccfe3f8cda0aa95c5d0c45bfcac7b75c7c24 (diff)
downloadnixlib-48c98e12d2b7651efc93e7f0ccb4d54cb3c8f12a.tar
nixlib-48c98e12d2b7651efc93e7f0ccb4d54cb3c8f12a.tar.gz
nixlib-48c98e12d2b7651efc93e7f0ccb4d54cb3c8f12a.tar.bz2
nixlib-48c98e12d2b7651efc93e7f0ccb4d54cb3c8f12a.tar.lz
nixlib-48c98e12d2b7651efc93e7f0ccb4d54cb3c8f12a.tar.xz
nixlib-48c98e12d2b7651efc93e7f0ccb4d54cb3c8f12a.tar.zst
nixlib-48c98e12d2b7651efc93e7f0ccb4d54cb3c8f12a.zip
ocaml-pipebang: add initial version (110.01.00) to the system
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/pipebang/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/pipebang/default.nix b/pkgs/development/ocaml-modules/pipebang/default.nix
new file mode 100644
index 000000000000..fa9a9f8f86a6
--- /dev/null
+++ b/pkgs/development/ocaml-modules/pipebang/default.nix
@@ -0,0 +1,20 @@
+{stdenv, buildOcaml, fetchurl}:
+
+buildOcaml rec {
+  name = "pipebang";
+  version = "110.01.00";
+
+  minimumSupportedOcamlVersion = "4.00";
+
+  src = fetchurl {
+    url = "https://github.com/janestreet/pipebang/archive/${version}.tar.gz";
+    sha256 = "a8858d9607c15cdf0a775196be060c8d91de724fc80a347d7a76ef1d38329096";
+  };
+
+  meta = with stdenv.lib; {
+    homepage = https://github.com/janestreet/pipebang;
+    description = "Syntax extension to transform x |! f into f x";
+    license = licenses.asl20;
+    maintainers = [ maintainers.ericbmerritt ];
+  };
+}