ocamlPackages.ezjsonm: 0.6.0 → 1.2.0

wip/yesman
Vincent Laporte 4 years ago committed by Vincent Laporte
parent c127653b72
commit ef45e1161e
  1. 1
      pkgs/development/ocaml-modules/cow/default.nix
  2. 14
      pkgs/development/ocaml-modules/ezjsonm/default.nix
  3. 1
      pkgs/development/ocaml-modules/mustache/default.nix

@ -2,6 +2,7 @@
, uri, xmlm, omd, ezjsonm }:
buildDunePackage rec {
useDune2 = true;
minimumOCamlVersion = "4.02.3";
version = "2.4.0";

@ -1,15 +1,17 @@
{ stdenv, fetchzip, buildDunePackage, jsonm, hex, sexplib }:
{ stdenv, fetchurl, buildDunePackage, jsonm, hex, sexplib0 }:
buildDunePackage rec {
pname = "ezjsonm";
version = "0.6.0";
version = "1.2.0";
src = fetchzip {
url = "https://github.com/mirage/${pname}/archive/${version}.tar.gz";
sha256 = "18g64lhai0bz65b9fil12vlgfpwa9b5apj7x6d7n4zzm18qfazvj";
useDune2 = true;
src = fetchurl {
url = "https://github.com/mirage/ezjsonm/releases/download/v${version}/ezjsonm-v${version}.tbz";
sha256 = "1q6cf63cc614lr141rzhm2w4rhi1snfqai6fmkhvfjs84hfbw2w7";
};
propagatedBuildInputs = [ jsonm hex sexplib ];
propagatedBuildInputs = [ jsonm hex sexplib0 ];
meta = {
description = "An easy interface on top of the Jsonm library";

@ -3,6 +3,7 @@
buildDunePackage rec {
pname = "mustache";
version = "3.1.0";
useDune2 = true;
src = fetchFromGitHub {
owner = "rgrinberg";
repo = "ocaml-mustache";

Loading…
Cancel
Save