summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2017-02-23 19:07:38 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2017-02-23 19:07:38 +0000
commita9b0c95ad43a6f44acf91294a4b097ccd50f91b8 (patch)
tree5a86627d93577d103417394dae63128cc1602ab9 /pkgs/development
parent7ca9e6776d3c180cc3254b7d88b38ac1d991e9e5 (diff)
downloadnixpkgs-a9b0c95ad43a6f44acf91294a4b097ccd50f91b8.tar
nixpkgs-a9b0c95ad43a6f44acf91294a4b097ccd50f91b8.tar.gz
nixpkgs-a9b0c95ad43a6f44acf91294a4b097ccd50f91b8.tar.bz2
nixpkgs-a9b0c95ad43a6f44acf91294a4b097ccd50f91b8.tar.lz
nixpkgs-a9b0c95ad43a6f44acf91294a4b097ccd50f91b8.tar.xz
nixpkgs-a9b0c95ad43a6f44acf91294a4b097ccd50f91b8.tar.zst
nixpkgs-a9b0c95ad43a6f44acf91294a4b097ccd50f91b8.zip
ocamlPackages.ppx_sexp_conv: init at 113.33.01+4.03
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/ocaml-modules/janestreet/ppx_sexp_conv-113_33_01.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/janestreet/ppx_sexp_conv-113_33_01.nix b/pkgs/development/ocaml-modules/janestreet/ppx_sexp_conv-113_33_01.nix
new file mode 100644
index 00000000000..d8c9166585e
--- /dev/null
+++ b/pkgs/development/ocaml-modules/janestreet/ppx_sexp_conv-113_33_01.nix
@@ -0,0 +1,21 @@
+{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, opam, topkg
+, sexplib, ppx_deriving, ppx_tools, ppx_type_conv
+}:
+
+stdenv.mkDerivation {
+  name = "ocaml${ocaml.version}-ppx_sexp_conv-133.33.01+4.03";
+  src = fetchurl {
+    url = http://ocaml.janestreet.com/ocaml-core/113.33/files/ppx_sexp_conv-113.33.01+4.03.tar.gz;
+    sha256 = "176pydk5fs8m2md9v8v5b16gra90s4v0ssqq38ghfsbv1faca8d6";
+  };
+
+  buildInputs = [ ocaml findlib ocamlbuild opam ppx_tools ];
+  propagatedBuildInputs = [ sexplib ppx_deriving ppx_type_conv ];
+
+  inherit (topkg) installPhase;
+
+  meta = {
+    license = stdenv.lib.licenses.asl20;
+    inherit (ocaml.meta) platforms;
+  };
+}