21 lines
604 B
Nix
21 lines
604 B
Nix
{stdenv, fetchurl, pkgconfig, openssl, lua5, curl, readline, bison, expat}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "popa3d-1.0.2";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.openwall.com/popa3d/${name}.tar.gz";
|
|
sha256 = "0zvspgnlrx4jhhkb5b1p280nsf9d558jijgpvwfyvdp4q4v460z7";
|
|
};
|
|
|
|
configurePhase = ''makeFlags="LIBS=-lcrypt 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;
|
|
maintainers = [ stdenv.lib.maintainers.simons ];
|
|
};
|
|
}
|