2021-07-27 13:34:13 +02:00
|
|
|
{ lib, buildDunePackage, ocaml, fetchurl, fmt, alcotest, crowbar, astring }:
|
2021-01-15 12:12:14 +01:00
|
|
|
|
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "pecu";
|
2021-07-27 13:34:13 +02:00
|
|
|
version = "0.6";
|
2021-01-15 12:12:14 +01:00
|
|
|
|
|
|
|
useDune2 = true;
|
|
|
|
|
|
|
|
minimumOCamlVersion = "4.03";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2021-07-27 13:34:13 +02:00
|
|
|
url = "https://github.com/mirage/pecu/releases/download/v${version}/pecu-v${version}.tbz";
|
|
|
|
sha256 = "a9d2b7da444c83b20f879f6c3b7fc911d08ac1e6245ad7105437504f9394e5c7";
|
2021-01-15 12:12:14 +01:00
|
|
|
};
|
|
|
|
|
2021-07-27 13:34:13 +02:00
|
|
|
# crowbar availability
|
|
|
|
doCheck = lib.versionAtLeast ocaml.version "4.08";
|
|
|
|
checkInputs = [ fmt alcotest crowbar astring ];
|
2021-01-15 12:12:14 +01:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Encoder/Decoder of Quoted-Printable (RFC2045 & RFC2047)";
|
|
|
|
license = licenses.mit;
|
|
|
|
homepage = "https://github.com/mirage/pecu";
|
|
|
|
maintainers = [ maintainers.sternenseemann ];
|
|
|
|
};
|
|
|
|
}
|