about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/janestreet/ppx_sexp_value-113_33_00.nix
blob: 21b67b9cce732e68a259841a9df9eabb314ea97f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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;
  };
}