2021-01-19 06:50:56 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, gnutls, gsasl, libidn, Security }:
|
2016-05-14 18:03:47 +01:00
|
|
|
|
2021-01-15 13:21:58 +00:00
|
|
|
with lib;
|
2017-03-18 01:02:23 +00:00
|
|
|
|
2016-05-14 18:03:47 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-04-25 01:28:04 +01:00
|
|
|
pname = "mpop";
|
2020-11-19 04:31:34 +00:00
|
|
|
version = "1.4.11";
|
2016-05-14 18:03:47 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-04-25 01:28:04 +01:00
|
|
|
url = "https://marlam.de/${pname}/releases/${pname}-${version}.tar.xz";
|
2020-11-19 04:31:34 +00:00
|
|
|
sha256 = "1gcxvhin5y0q47svqbf90r5aip0cgywm8sq6m84ygda7km8xylwv";
|
2016-05-14 18:03:47 +01:00
|
|
|
};
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2018-12-16 18:03:35 +00:00
|
|
|
buildInputs = [ gnutls gsasl libidn ]
|
2017-03-18 01:02:23 +00:00
|
|
|
++ optional stdenv.isDarwin Security;
|
2016-05-14 18:03:47 +01:00
|
|
|
|
2018-12-16 18:03:35 +00:00
|
|
|
configureFlags = optional stdenv.isDarwin [ "--with-macosx-keyring" ];
|
2016-05-14 18:03:47 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "POP3 mail retrieval agent";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://marlam.de/mpop";
|
2017-03-18 01:02:23 +00:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
platforms = platforms.unix;
|
2016-05-14 18:03:47 +01:00
|
|
|
};
|
|
|
|
}
|