summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/yojson/default.nix
blob: ab949f4f1f2232ef98b2d38895dd82ed3831f07e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{ stdenv, fetchzip, ocaml, findlib, cppo, easy-format, biniou }:
let
  pname = "yojson";
  version = "1.2.3";
in
stdenv.mkDerivation {

  name = "ocaml-${pname}-${version}";

  src = fetchzip {
    url = "https://github.com/mjambon/${pname}/archive/v${version}.tar.gz";
    sha256 = "10dvkndgwanvw4agbjln7kgb1n9s6lii7jw82kwxczl5rd1sgmvl";
  };

  buildInputs = [ ocaml findlib ];

  propagatedBuildInputs = [ cppo easy-format biniou ];

  createFindlibDestdir = true;

  makeFlags = "PREFIX=$(out)";

  preBuild = ''
    mkdir $out/bin
  '';

  meta = with stdenv.lib; {
    description = "An optimized parsing and printing library for the JSON format";
    homepage = "http://mjambon.com/${pname}.html";
    license = licenses.bsd3;
    maintainers = [ maintainers.vbgl ];
    platforms = ocaml.meta.platforms or [];
  };
}