1{ lib, fetchurl, buildDunePackage, jsonm, hex, sexplib0 }:
2
3buildDunePackage rec {
4 pname = "ezjsonm";
5 version = "1.3.0";
6
7 duneVersion = "3";
8
9 src = fetchurl {
10 url = "https://github.com/mirage/ezjsonm/releases/download/v${version}/ezjsonm-${version}.tbz";
11 hash = "sha256-CGM+Dw52eoroGTXKfnTxaTuFp5xFAtVo7t/1Fw8M13s=";
12 };
13
14 propagatedBuildInputs = [ jsonm hex sexplib0 ];
15
16 meta = {
17 description = "An easy interface on top of the Jsonm library";
18 homepage = "https://github.com/mirage/ezjsonm";
19 license = lib.licenses.isc;
20 maintainers = with lib.maintainers; [ vbgl ];
21 };
22}