mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
popa3d: add version 1.0.2
This commit is contained in:
parent
265a0563fa
commit
7ba33d813e
20
pkgs/servers/mail/popa3d/default.nix
Normal file
20
pkgs/servers/mail/popa3d/default.nix
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
{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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -5334,6 +5334,8 @@ let
|
|||||||
|
|
||||||
nginx = callPackage ../servers/http/nginx { };
|
nginx = callPackage ../servers/http/nginx { };
|
||||||
|
|
||||||
|
popa3d = callPackage ../servers/mail/popa3d { };
|
||||||
|
|
||||||
postfix = callPackage ../servers/mail/postfix { };
|
postfix = callPackage ../servers/mail/postfix { };
|
||||||
|
|
||||||
pulseaudio = callPackage ../servers/pulseaudio {
|
pulseaudio = callPackage ../servers/pulseaudio {
|
||||||
|
Loading…
Reference in New Issue
Block a user