1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 03:30:45 +00:00

ocamlPackages.ezjsonm-encoding: init at 2.0.0

This commit is contained in:
Francesco Gazzetta 2024-06-05 11:07:35 +02:00 committed by Vincent Laporte
parent 66e35ac7f9
commit a887251577
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,20 @@
{ lib, fetchurl, buildDunePackage, ezjsonm }:
buildDunePackage rec {
pname = "ezjsonm-encoding";
version = "2.0.0";
src = fetchurl {
url = "https://github.com/lthms/ezjsonm-encoding/releases/download/${version}/ezjsonm-encoding-${version}.tbz";
hash = "sha256-e5OPcbbQLr16ANFNZ5i10LjlHgwcRTCYhyvOhVk22yI=";
};
propagatedBuildInputs = [ ezjsonm ];
meta = {
description = "Encoding combinators a la Data_encoding for Ezjsonm";
homepage = "https://github.com/lthms/ezjsonmi-encoding";
license = lib.licenses.mpl20;
maintainers = with lib.maintainers; [ fgaz ];
};
}

View file

@ -480,6 +480,8 @@ let
ezjsonm = callPackage ../development/ocaml-modules/ezjsonm { };
ezjsonm-encoding = callPackage ../development/ocaml-modules/ezjsonm-encoding { };
ezxmlm = callPackage ../development/ocaml-modules/ezxmlm { };
### F ###