mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
23 lines
611 B
Nix
23 lines
611 B
Nix
{ lib, fetchurl, buildDunePackage, jsonm, hex, sexplib0 }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "ezjsonm";
|
|
version = "1.2.0";
|
|
|
|
useDune2 = true;
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/mirage/ezjsonm/releases/download/v${version}/ezjsonm-v${version}.tbz";
|
|
sha256 = "1q6cf63cc614lr141rzhm2w4rhi1snfqai6fmkhvfjs84hfbw2w7";
|
|
};
|
|
|
|
propagatedBuildInputs = [ jsonm hex sexplib0 ];
|
|
|
|
meta = {
|
|
description = "An easy interface on top of the Jsonm library";
|
|
homepage = "https://github.com/mirage/ezjsonm";
|
|
license = lib.licenses.isc;
|
|
maintainers = with lib.maintainers; [ vbgl ];
|
|
};
|
|
}
|