summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2017-02-26 15:29:29 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2017-02-26 17:29:36 +0000
commit3c2c608c2eaa6f61b4d7a6f169f24ded0d69caf6 (patch)
tree185cbf9bc21cfbbbdc8ab76e9c8293ab1385a60e /pkgs/development/ocaml-modules
parent03be79a01872621fd36844d4958b780730643abc (diff)
downloadnixpkgs-3c2c608c2eaa6f61b4d7a6f169f24ded0d69caf6.tar
nixpkgs-3c2c608c2eaa6f61b4d7a6f169f24ded0d69caf6.tar.gz
nixpkgs-3c2c608c2eaa6f61b4d7a6f169f24ded0d69caf6.tar.bz2
nixpkgs-3c2c608c2eaa6f61b4d7a6f169f24ded0d69caf6.tar.lz
nixpkgs-3c2c608c2eaa6f61b4d7a6f169f24ded0d69caf6.tar.xz
nixpkgs-3c2c608c2eaa6f61b4d7a6f169f24ded0d69caf6.tar.zst
nixpkgs-3c2c608c2eaa6f61b4d7a6f169f24ded0d69caf6.zip
ocamlPackages.ppx_sexp_value: init at 113.33.00+4.03
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/janestreet/ppx_sexp_value-113_33_00.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/janestreet/ppx_sexp_value-113_33_00.nix b/pkgs/development/ocaml-modules/janestreet/ppx_sexp_value-113_33_00.nix
new file mode 100644
index 00000000000..21b67b9cce7
--- /dev/null
+++ b/pkgs/development/ocaml-modules/janestreet/ppx_sexp_value-113_33_00.nix
@@ -0,0 +1,21 @@
+{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, opam, topkg
+, ppx_here, ppx_sexp_conv
+}:
+
+stdenv.mkDerivation {
+  name = "ocaml${ocaml.version}-ppx_sexp_value-113.33.00+4.03";
+  src = fetchurl {
+    url = http://ocaml.janestreet.com/ocaml-core/113.33/files/ppx_sexp_value-113.33.00+4.03.tar.gz;
+    sha256 = "0pn2v1m479lbdgprv4w9czyv5nim0hz6ailmy1xxlxlhazwbqzwm";
+  };
+
+  buildInputs = [ ocaml findlib ocamlbuild opam ];
+  propagatedBuildInputs = [ ppx_sexp_conv ppx_here ];
+
+  inherit (topkg) installPhase;
+
+  meta = {
+    license = stdenv.lib.licenses.asl20;
+    inherit (ocaml.meta) platforms;
+  };
+}