depot/third_party/nixpkgs/pkgs/servers/mail/popa3d/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

28 lines
663 B
Nix

{ stdenv, fetchurl, openssl }:
stdenv.mkDerivation rec {
name = "popa3d-1.0.3";
src = fetchurl {
url = "http://www.openwall.com/popa3d/${name}.tar.gz";
sha256 = "1g48cd74sqhl496wmljhq44iyfpghaz363a1ip8nyhpjz7d57f03";
};
buildInputs = [ openssl ];
patches = [
./fix-mail-spool-path.patch
./use-openssl.patch
./use-glibc-crypt.patch
./enable-standalone-mode.patch
];
configurePhase = ''makeFlags="PREFIX=$out MANDIR=$out/share/man"'';
meta = {
homepage = "http://www.openwall.com/popa3d/";
description = "Tiny POP3 daemon with security as the primary goal";
platforms = stdenv.lib.platforms.linux;
};
}