mpop: 1.4.14 -> 1.4.15
This commit is contained in:
parent
80d606efb7
commit
8e3a5a3404
@ -1,26 +1,42 @@
|
|||||||
{ lib, stdenv, fetchurl, pkg-config, gnutls, gsasl, libidn, Security }:
|
{ lib
|
||||||
|
, stdenv
|
||||||
with lib;
|
, fetchurl
|
||||||
|
, gnutls
|
||||||
|
, gsasl
|
||||||
|
, libidn
|
||||||
|
, pkg-config
|
||||||
|
, Security
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "mpop";
|
pname = "mpop";
|
||||||
version = "1.4.14";
|
version = "1.4.15";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://marlam.de/${pname}/releases/${pname}-${version}.tar.xz";
|
url = "https://marlam.de/${pname}/releases/${pname}-${version}.tar.xz";
|
||||||
sha256 = "046wbglvry54id9wik6c020fs09piv3gig3z0nh5nmyhsxjw4i18";
|
sha256 = "sha256-P1KytdS8WO2TzwsRRs7k903oHCwHol7gMu+mWUZaAnA=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config ];
|
nativeBuildInputs = [
|
||||||
buildInputs = [ gnutls gsasl libidn ]
|
pkg-config
|
||||||
++ optional stdenv.isDarwin Security;
|
];
|
||||||
|
|
||||||
configureFlags = optional stdenv.isDarwin [ "--with-macosx-keyring" ];
|
buildInputs = [
|
||||||
|
gnutls
|
||||||
|
gsasl
|
||||||
|
libidn
|
||||||
|
] ++ lib.optional stdenv.isDarwin [
|
||||||
|
Security
|
||||||
|
];
|
||||||
|
|
||||||
meta = {
|
configureFlags = lib.optional stdenv.isDarwin [
|
||||||
description = "POP3 mail retrieval agent";
|
"--with-macosx-keyring"
|
||||||
homepage = "https://marlam.de/mpop";
|
];
|
||||||
license = licenses.gpl3Plus;
|
|
||||||
platforms = platforms.unix;
|
meta = with lib;{
|
||||||
};
|
description = "POP3 mail retrieval agent";
|
||||||
|
homepage = "https://marlam.de/mpop";
|
||||||
|
license = licenses.gpl3Plus;
|
||||||
|
platforms = platforms.unix;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user