2012-09-19 00:27:00 +01:00
|
|
|
{ stdenv, fetchurl, openssl }:
|
2012-09-19 00:16:01 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
2014-01-25 19:55:12 +00:00
|
|
|
name = "popa3d-1.0.3";
|
2012-09-19 00:16:01 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.openwall.com/popa3d/${name}.tar.gz";
|
2014-01-25 19:55:12 +00:00
|
|
|
sha256 = "1g48cd74sqhl496wmljhq44iyfpghaz363a1ip8nyhpjz7d57f03";
|
2012-09-19 00:16:01 +01:00
|
|
|
};
|
|
|
|
|
2012-09-19 00:27:00 +01:00
|
|
|
buildInputs = [ openssl ];
|
|
|
|
|
2012-09-19 00:38:07 +01:00
|
|
|
patches = [
|
|
|
|
./fix-mail-spool-path.patch
|
|
|
|
./use-openssl.patch
|
|
|
|
./use-glibc-crypt.patch
|
|
|
|
./enable-standalone-mode.patch
|
|
|
|
];
|
2012-09-19 00:27:00 +01:00
|
|
|
|
|
|
|
configurePhase = ''makeFlags="PREFIX=$out MANDIR=$out/share/man"'';
|
2012-09-19 00:16:01 +01:00
|
|
|
|
|
|
|
meta = {
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = http://www.openwall.com/popa3d/;
|
2014-01-25 19:59:31 +00:00
|
|
|
description = "Tiny POP3 daemon with security as the primary goal";
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2012-09-19 00:16:01 +01:00
|
|
|
};
|
|
|
|
}
|