about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/janestreet
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2017-02-25 21:31:14 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2017-02-26 17:29:35 +0000
commit3a9ae7e367d23f255c4dde4da7a10db69a9e8b3f (patch)
treed803c99814e3f0ed7a08d68f68642b36a25fd7df /pkgs/development/ocaml-modules/janestreet
parent0e06c903b51b9319609786803bbe3877a549149f (diff)
downloadnixlib-3a9ae7e367d23f255c4dde4da7a10db69a9e8b3f.tar
nixlib-3a9ae7e367d23f255c4dde4da7a10db69a9e8b3f.tar.gz
nixlib-3a9ae7e367d23f255c4dde4da7a10db69a9e8b3f.tar.bz2
nixlib-3a9ae7e367d23f255c4dde4da7a10db69a9e8b3f.tar.lz
nixlib-3a9ae7e367d23f255c4dde4da7a10db69a9e8b3f.tar.xz
nixlib-3a9ae7e367d23f255c4dde4da7a10db69a9e8b3f.tar.zst
nixlib-3a9ae7e367d23f255c4dde4da7a10db69a9e8b3f.zip
ocamlPackages.ppx_compare: init at 113.33.00+4.03
Diffstat (limited to 'pkgs/development/ocaml-modules/janestreet')
-rw-r--r--pkgs/development/ocaml-modules/janestreet/ppx_compare-113_33_00.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/janestreet/ppx_compare-113_33_00.nix b/pkgs/development/ocaml-modules/janestreet/ppx_compare-113_33_00.nix
new file mode 100644
index 000000000000..794570402025
--- /dev/null
+++ b/pkgs/development/ocaml-modules/janestreet/ppx_compare-113_33_00.nix
@@ -0,0 +1,21 @@
+{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, opam, topkg
+, ppx_tools, ppx_deriving, ppx_type_conv
+}:
+
+stdenv.mkDerivation {
+  name = "ocaml${ocaml.version}-ppx_compare-113.33.00+4.03";
+  src = fetchurl {
+    url = http://ocaml.janestreet.com/ocaml-core/113.33/files/ppx_compare-113.33.00+4.03.tar.gz;
+    sha256 = "07drgg6c857lsvxdjscdcb1ncdr5p3183spw32sbfcrbnr12nzys";
+  };
+
+  buildInputs = [ ocaml findlib ocamlbuild opam ppx_tools ];
+  propagatedBuildInputs = [ ppx_type_conv ppx_deriving ];
+
+  inherit (topkg) installPhase;
+
+  meta = {
+    license = stdenv.lib.licenses.asl20;
+    inherit (ocaml.meta) platforms;
+  };
+}