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:
parent
66e35ac7f9
commit
a887251577
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 ];
|
||||
};
|
||||
}
|
|
@ -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 ###
|
||||
|
|
Loading…
Reference in a new issue