summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/networking/mpop
diff options
context:
space:
mode:
authorndowens <ndowens04@gmail.com>2017-03-17 20:02:23 -0500
committerndowens <ndowens04@gmail.com>2017-03-17 20:02:23 -0500
commit8ef05d30105ae875429a3631bd4cfcf13286f338 (patch)
treea3dcf66f11329a5efe176c6b05d2e05b44edb6f0 /pkgs/applications/networking/mpop
parent63f1a14ae551f650584ac7502b5ee159221d1f92 (diff)
mpop: 1.2.4 -> 1.2.6
Diffstat (limited to 'pkgs/applications/networking/mpop')
-rw-r--r--pkgs/applications/networking/mpop/default.nix19
1 files changed, 11 insertions, 8 deletions
diff --git a/pkgs/applications/networking/mpop/default.nix b/pkgs/applications/networking/mpop/default.nix
index b2cc30b6f1f3..3d0d576bffb1 100644
--- a/pkgs/applications/networking/mpop/default.nix
+++ b/pkgs/applications/networking/mpop/default.nix
@@ -1,24 +1,27 @@
{ stdenv, fetchurl, openssl, pkgconfig, gnutls, gsasl, libidn, Security }:
+with stdenv.lib;
+
stdenv.mkDerivation rec {
- version = "1.2.4";
+ version = "1.2.6";
name = "mpop-${version}";
src = fetchurl {
url = "mirror://sourceforge/mpop/${name}.tar.xz";
- sha256 = "158zl6clxrl2id4kvdig2lvdvm0vg2byqcgn1dnxfjg5mw16ngwk";
+ sha256 = "0p1ix63jh64dibrlccch8q7gxl9nn18wd2qpyr5z1h4gs2fpmv4z";
};
- buildInputs = [ openssl pkgconfig gnutls gsasl libidn ]
- ++ stdenv.lib.optional stdenv.isDarwin Security;
+ nativeBuildInputs = [ pkgconfig ];
+ buildInputs = [ openssl gnutls gsasl libidn ]
+ ++ optional stdenv.isDarwin Security;
configureFlags =
- stdenv.lib.optional stdenv.isDarwin [ "--with-macosx-keyring" ];
+ optional stdenv.isDarwin [ "--with-macosx-keyring" ];
meta = {
description = "POP3 mail retrieval agent";
- homepage = "http://mpop.sourceforge.net/";
- license = stdenv.lib.licenses.gpl3Plus;
- platforms = stdenv.lib.platforms.unix;
+ homepage = http://mpop.sourceforge.net/;
+ license = licenses.gpl3Plus;
+ platforms = platforms.unix;
};
}