about summary refs log tree commit diff
path: root/pkgs/applications/networking/mpop/default.nix
diff options
context:
space:
mode:
authorWill Dietz <github@wdtz.org>2018-12-16 12:03:35 -0600
committerRenaud <c0bw3b@users.noreply.github.com>2018-12-16 19:03:35 +0100
commitc565746fdf10d58fc83fd4122072dedeaa365413 (patch)
tree9312bd9efeb74fbedd711e56fb9b0fb803e83899 /pkgs/applications/networking/mpop/default.nix
parenta477fefc43071c4e5c0212be83965f728d405438 (diff)
mpop: 1.2.6 -> 1.4.1 (#51692)
* mpop: 1.2.6 -> 1.4.0

Update homepage and license.

* mpop: 1.4.0 -> 1.4.1

https://marlam.de/mpop/news/mpop-1-4-1/

* mpop: don't use openssl per upstream's strong recommendation

https://github.com/NixOS/nixpkgs/pull/51692#pullrequestreview-182938501
Diffstat (limited to 'pkgs/applications/networking/mpop/default.nix')
-rw-r--r--pkgs/applications/networking/mpop/default.nix13
1 files changed, 6 insertions, 7 deletions
diff --git a/pkgs/applications/networking/mpop/default.nix b/pkgs/applications/networking/mpop/default.nix
index 3d0d576bffb19..912c23f107d90 100644
--- a/pkgs/applications/networking/mpop/default.nix
+++ b/pkgs/applications/networking/mpop/default.nix
@@ -3,24 +3,23 @@
 with stdenv.lib;
 
 stdenv.mkDerivation rec {
-  version = "1.2.6";
+  version = "1.4.1";
   name = "mpop-${version}";
 
   src = fetchurl {
-    url = "mirror://sourceforge/mpop/${name}.tar.xz";
-    sha256 = "0p1ix63jh64dibrlccch8q7gxl9nn18wd2qpyr5z1h4gs2fpmv4z";
+    url = "https://marlam.de/mpop/releases/${name}.tar.xz";
+    sha256 = "1b9mj6yfa8vg5flxw1xb8xalifjg87dghbg523i6fbr7679zl9iy";
   };
 
   nativeBuildInputs = [ pkgconfig ];
-  buildInputs = [ openssl gnutls gsasl libidn ]
+  buildInputs = [ gnutls gsasl libidn ]
     ++ optional stdenv.isDarwin Security;
 
-  configureFlags =
-    optional stdenv.isDarwin [ "--with-macosx-keyring" ];
+  configureFlags = optional stdenv.isDarwin [ "--with-macosx-keyring" ];
 
   meta = {
       description = "POP3 mail retrieval agent";
-      homepage = http://mpop.sourceforge.net/;
+      homepage = https://marlam.de/mpop;
       license = licenses.gpl3Plus;
       platforms = platforms.unix;
     };