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
This commit is contained in:
Will Dietz 2018-12-16 12:03:35 -06:00 committed by Renaud
parent a477fefc43
commit c565746fdf

View File

@ -3,24 +3,23 @@
with stdenv.lib; with stdenv.lib;
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
version = "1.2.6"; version = "1.4.1";
name = "mpop-${version}"; name = "mpop-${version}";
src = fetchurl { src = fetchurl {
url = "mirror://sourceforge/mpop/${name}.tar.xz"; url = "https://marlam.de/mpop/releases/${name}.tar.xz";
sha256 = "0p1ix63jh64dibrlccch8q7gxl9nn18wd2qpyr5z1h4gs2fpmv4z"; sha256 = "1b9mj6yfa8vg5flxw1xb8xalifjg87dghbg523i6fbr7679zl9iy";
}; };
nativeBuildInputs = [ pkgconfig ]; nativeBuildInputs = [ pkgconfig ];
buildInputs = [ openssl gnutls gsasl libidn ] buildInputs = [ gnutls gsasl libidn ]
++ optional stdenv.isDarwin Security; ++ optional stdenv.isDarwin Security;
configureFlags = configureFlags = optional stdenv.isDarwin [ "--with-macosx-keyring" ];
optional stdenv.isDarwin [ "--with-macosx-keyring" ];
meta = { meta = {
description = "POP3 mail retrieval agent"; description = "POP3 mail retrieval agent";
homepage = http://mpop.sourceforge.net/; homepage = https://marlam.de/mpop;
license = licenses.gpl3Plus; license = licenses.gpl3Plus;
platforms = platforms.unix; platforms = platforms.unix;
}; };