nixpkgs/pkgs/development/ocaml-modules/ezjsonm/default.nix

21 lines
577 B
Nix
Raw Normal View History

{ 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";
2018-07-05 20:31:18 +00:00
sha256 = "18g64lhai0bz65b9fil12vlgfpwa9b5apj7x6d7n4zzm18qfazvj";
};
2017-02-18 21:52:46 +00:00
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 ];
};
}