summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Scott <code@humanleg.org.uk>2021-07-31 18:08:05 +0100
committerGitHub <noreply@github.com>2021-07-31 18:08:05 +0100
commit36dd3023be5662936cf193e0cf38a940702df65c (patch)
treec4de396aa3c29595b30e0b2c5a806e8c9cff0311
parentgitlab: 14.0.5 -> 14.1.0 (diff)
parentfetchmail: 6.4.16 -> 6.4.20 (diff)
downloadnixpkgs-36dd3023be5662936cf193e0cf38a940702df65c.tar.gz
Merge pull request #131923 from NixOS/backport-131898-to-release-21.05
[Backport release-21.05] fetchmail: 6.4.16 -> 6.4.20
-rw-r--r--pkgs/applications/misc/fetchmail/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/misc/fetchmail/default.nix b/pkgs/applications/misc/fetchmail/default.nix
index d1659822bb2d..18ed79c99d64 100644
--- a/pkgs/applications/misc/fetchmail/default.nix
+++ b/pkgs/applications/misc/fetchmail/default.nix
@@ -1,7 +1,7 @@
{ lib, stdenv, fetchurl, openssl }:
let
- version = "6.4.16";
+ version = "6.4.20";
in
stdenv.mkDerivation {
pname = "fetchmail";
@@ -9,7 +9,7 @@ stdenv.mkDerivation {
src = fetchurl {
url = "mirror://sourceforge/fetchmail/fetchmail-${version}.tar.xz";
- sha256 = "sha256-BEuaCsA6+653RJed7+Pi4y45FBvKaP0Mje2i7UCIT7k=";
+ sha256 = "0xk171sbxcwjh1ibpipryw5sv4sy7jjfvhn5n373j04g5sp428f8";
};
buildInputs = [ openssl ];