ocamlPackages.pecu: init at 0.5

This commit is contained in:
sternenseemann 2021-01-15 12:12:14 +01:00 committed by Vincent Laporte
parent bf010dac66
commit 47818a1ff3
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ lib, buildDunePackage, ocaml, fetchurl, fmt, alcotest }:
buildDunePackage rec {
pname = "pecu";
version = "0.5";
useDune2 = true;
minimumOCamlVersion = "4.03";
src = fetchurl {
url = "https://github.com/mirage/pecu/releases/download/v0.5/pecu-v0.5.tbz";
sha256 = "713753cd6ba3f4609a26d94576484e83ffef7de5f2208a2993576a1b22f0e0e7";
};
# fmt availability
doCheck = lib.versionAtLeast ocaml.version "4.05";
checkInputs = [ fmt alcotest ];
meta = with lib; {
description = "Encoder/Decoder of Quoted-Printable (RFC2045 & RFC2047)";
license = licenses.mit;
homepage = "https://github.com/mirage/pecu";
maintainers = [ maintainers.sternenseemann ];
};
}

View file

@ -847,6 +847,8 @@ let
pcap-format = callPackage ../development/ocaml-modules/pcap-format { };
pecu = callPackage ../development/ocaml-modules/pecu { };
pgsolver = callPackage ../development/ocaml-modules/pgsolver { };
phylogenetics = callPackage ../development/ocaml-modules/phylogenetics { };