Merge pull request #131672 from sternenseemann/pecu-0.6

ocamlPackages.pecu: 0.5 -> 0.6

authored by

Ben Siraphob and committed by
GitHub
52168faa 712600db

+7 -7
+7 -7
pkgs/development/ocaml-modules/pecu/default.nix
··· 1 - { lib, buildDunePackage, ocaml, fetchurl, fmt, alcotest }: 2 3 buildDunePackage rec { 4 pname = "pecu"; 5 - version = "0.5"; 6 7 useDune2 = true; 8 9 minimumOCamlVersion = "4.03"; 10 11 src = fetchurl { 12 - url = "https://github.com/mirage/pecu/releases/download/v0.5/pecu-v0.5.tbz"; 13 - sha256 = "713753cd6ba3f4609a26d94576484e83ffef7de5f2208a2993576a1b22f0e0e7"; 14 }; 15 16 - # fmt availability 17 - doCheck = lib.versionAtLeast ocaml.version "4.05"; 18 - checkInputs = [ fmt alcotest ]; 19 20 meta = with lib; { 21 description = "Encoder/Decoder of Quoted-Printable (RFC2045 & RFC2047)";
··· 1 + { lib, buildDunePackage, ocaml, fetchurl, fmt, alcotest, crowbar, astring }: 2 3 buildDunePackage rec { 4 pname = "pecu"; 5 + version = "0.6"; 6 7 useDune2 = true; 8 9 minimumOCamlVersion = "4.03"; 10 11 src = fetchurl { 12 + url = "https://github.com/mirage/pecu/releases/download/v${version}/pecu-v${version}.tbz"; 13 + sha256 = "a9d2b7da444c83b20f879f6c3b7fc911d08ac1e6245ad7105437504f9394e5c7"; 14 }; 15 16 + # crowbar availability 17 + doCheck = lib.versionAtLeast ocaml.version "4.08"; 18 + checkInputs = [ fmt alcotest crowbar astring ]; 19 20 meta = with lib; { 21 description = "Encoder/Decoder of Quoted-Printable (RFC2045 & RFC2047)";