aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/ocaml-modules/ezjsonm/default.nix
blob: 781af8a4c98b187b29d4b954e26d5e97e6daca1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, fetchzip, buildDunePackage, jsonm, hex, sexplib }:

buildDunePackage rec {
  pname = "ezjsonm";
  version = "0.6.0";

  src = fetchzip {
    url = "https://github.com/mirage/${pname}/archive/${version}.tar.gz";
    sha256 = "18g64lhai0bz65b9fil12vlgfpwa9b5apj7x6d7n4zzm18qfazvj";
  };

  propagatedBuildInputs = [ jsonm hex sexplib ];

  meta = {
    description = "An easy interface on top of the Jsonm library";
    homepage = "https://github.com/mirage/ezjsonm";
    license = stdenv.lib.licenses.isc;
    maintainers = with stdenv.lib.maintainers; [ vbgl ];
  };
}