summary refs log tree commit diff
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2021-07-27 21:45:55 +0700
committerGitHub <noreply@github.com>2021-07-27 21:45:55 +0700
commit52168faa5b189ef26bd8d0dff9a226a4618dd4e9 (patch)
tree7bd19facc90309d0dfc420b28c0b097673c1dc56
parent712600db3be83bd55b65432c62ca869d2a54524e (diff)
parent1c819c21b835db69c516faf6880ad17db9d7abec (diff)
downloadnixpkgs-52168faa5b189ef26bd8d0dff9a226a4618dd4e9.tar
nixpkgs-52168faa5b189ef26bd8d0dff9a226a4618dd4e9.tar.gz
nixpkgs-52168faa5b189ef26bd8d0dff9a226a4618dd4e9.tar.bz2
nixpkgs-52168faa5b189ef26bd8d0dff9a226a4618dd4e9.tar.lz
nixpkgs-52168faa5b189ef26bd8d0dff9a226a4618dd4e9.tar.xz
nixpkgs-52168faa5b189ef26bd8d0dff9a226a4618dd4e9.tar.zst
nixpkgs-52168faa5b189ef26bd8d0dff9a226a4618dd4e9.zip
Merge pull request #131672 from sternenseemann/pecu-0.6
ocamlPackages.pecu: 0.5 -> 0.6
-rw-r--r--pkgs/development/ocaml-modules/pecu/default.nix14
1 files changed, 7 insertions, 7 deletions
diff --git a/pkgs/development/ocaml-modules/pecu/default.nix b/pkgs/development/ocaml-modules/pecu/default.nix
index 0059bbdec3c..22c1913635f 100644
--- a/pkgs/development/ocaml-modules/pecu/default.nix
+++ b/pkgs/development/ocaml-modules/pecu/default.nix
@@ -1,21 +1,21 @@
-{ lib, buildDunePackage, ocaml, fetchurl, fmt, alcotest }:
+{ lib, buildDunePackage, ocaml, fetchurl, fmt, alcotest, crowbar, astring }:
 
 buildDunePackage rec {
   pname = "pecu";
-  version = "0.5";
+  version = "0.6";
 
   useDune2 = true;
 
   minimumOCamlVersion = "4.03";
 
   src = fetchurl {
-    url = "https://github.com/mirage/pecu/releases/download/v0.5/pecu-v0.5.tbz";
-    sha256 = "713753cd6ba3f4609a26d94576484e83ffef7de5f2208a2993576a1b22f0e0e7";
+    url = "https://github.com/mirage/pecu/releases/download/v${version}/pecu-v${version}.tbz";
+    sha256 = "a9d2b7da444c83b20f879f6c3b7fc911d08ac1e6245ad7105437504f9394e5c7";
   };
 
-  # fmt availability
-  doCheck = lib.versionAtLeast ocaml.version "4.05";
-  checkInputs = [ fmt alcotest ];
+  # crowbar availability
+  doCheck = lib.versionAtLeast ocaml.version "4.08";
+  checkInputs = [ fmt alcotest crowbar astring ];
 
   meta = with lib; {
     description = "Encoder/Decoder of Quoted-Printable (RFC2045 & RFC2047)";