nixpkgs/pkgs/applications/networking/mpop/default.nix

27 lines
695 B
Nix
Raw Normal View History

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