about summary refs log tree commit diff
path: root/pkgs/applications/misc/fetchmail/default.nix
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2014-01-13 16:39:37 +0100
committerPeter Simons <simons@cryp.to>2014-01-13 17:05:45 +0100
commit7148f50ef3f841ed65c0932d7b2e4bf6b4d3edfc (patch)
tree27e4dabf76576d6981b1f01444346c43a0d445ff /pkgs/applications/misc/fetchmail/default.nix
parent16cd5aba6a96e4d0f2e3f1e546c07220c7cd270c (diff)
downloadnixlib-7148f50ef3f841ed65c0932d7b2e4bf6b4d3edfc.tar
nixlib-7148f50ef3f841ed65c0932d7b2e4bf6b4d3edfc.tar.gz
nixlib-7148f50ef3f841ed65c0932d7b2e4bf6b4d3edfc.tar.bz2
nixlib-7148f50ef3f841ed65c0932d7b2e4bf6b4d3edfc.tar.lz
nixlib-7148f50ef3f841ed65c0932d7b2e4bf6b4d3edfc.tar.xz
nixlib-7148f50ef3f841ed65c0932d7b2e4bf6b4d3edfc.tar.zst
nixlib-7148f50ef3f841ed65c0932d7b2e4bf6b4d3edfc.zip
fetchmail: update to version 6.3.26
Diffstat (limited to 'pkgs/applications/misc/fetchmail/default.nix')
-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 79d27eea8487..eb01baf44dd2 100644
--- a/pkgs/applications/misc/fetchmail/default.nix
+++ b/pkgs/applications/misc/fetchmail/default.nix
@@ -1,14 +1,14 @@
 { stdenv, fetchurl, openssl }:
 
 let
-  version = "6.3.20";
+  version = "6.3.26";
 in
 stdenv.mkDerivation {
   name="fetchmail-${version}";
 
   src = fetchurl {
     url = "http://download.berlios.de/fetchmail/fetchmail-${version}.tar.bz2";
-    sha256 = "22e94f11d885cb9330a197fd80217d44f65e6b087e4d4b4d83e573adfc24aa7b";
+    sha256 = "08rafrs1dlr11myr0p99kg4k80qyy0fa63gg3ac88zn49174lwhw";
   };
 
   buildInputs = [ openssl ];