depot/third_party/nixpkgs/pkgs/development/ocaml-modules/ezjsonm/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

20 lines
579 B
Nix

{ 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 ];
};
}