2018-11-05 10:21:46 +00:00
|
|
|
{ stdenv, fetchzip, buildDunePackage, jsonm, hex, sexplib }:
|
2015-01-24 22:34:56 +00:00
|
|
|
|
2018-11-05 10:21:46 +00:00
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "ezjsonm";
|
|
|
|
version = "0.6.0";
|
2015-01-24 22:34:56 +00:00
|
|
|
|
|
|
|
src = fetchzip {
|
2018-11-05 10:21:46 +00:00
|
|
|
url = "https://github.com/mirage/${pname}/archive/${version}.tar.gz";
|
2018-07-05 21:31:18 +01:00
|
|
|
sha256 = "18g64lhai0bz65b9fil12vlgfpwa9b5apj7x6d7n4zzm18qfazvj";
|
2015-01-24 22:34:56 +00:00
|
|
|
};
|
|
|
|
|
2017-02-18 21:52:46 +00:00
|
|
|
propagatedBuildInputs = [ jsonm hex sexplib ];
|
2015-01-24 22:34:56 +00:00
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|