mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
ocamlPackages.ezjsonm-encoding: init at 2.0.0
(cherry picked from commit e8b10438a6
)
This commit is contained in:
parent
2a3a9b7896
commit
15e4d80c77
20
pkgs/development/ocaml-modules/ezjsonm-encoding/default.nix
Normal file
20
pkgs/development/ocaml-modules/ezjsonm-encoding/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -474,6 +474,8 @@ let
|
||||
|
||||
ezjsonm = callPackage ../development/ocaml-modules/ezjsonm { };
|
||||
|
||||
ezjsonm-encoding = callPackage ../development/ocaml-modules/ezjsonm-encoding { };
|
||||
|
||||
ezxmlm = callPackage ../development/ocaml-modules/ezxmlm { };
|
||||
|
||||
### F ###
|
||||
|
Loading…
Reference in New Issue
Block a user