biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / servers / mail / popa3d / default.nix
blobda7ba498f243b926e29399a0dd16da3fa0427be3
1 { lib, stdenv, fetchurl,  openssl, libxcrypt }:
3 stdenv.mkDerivation rec {
4   pname = "popa3d";
5   version = "1.0.3";
7   src = fetchurl {
8     url = "http://www.openwall.com/popa3d/${pname}-${version}.tar.gz";
9     sha256 = "1g48cd74sqhl496wmljhq44iyfpghaz363a1ip8nyhpjz7d57f03";
10   };
12   buildInputs = [ openssl libxcrypt ];
14   patches = [
15     ./fix-mail-spool-path.patch
16     ./use-openssl.patch
17     ./use-glibc-crypt.patch
18     ./enable-standalone-mode.patch
19   ];
21   configurePhase = ''makeFlags="PREFIX=$out MANDIR=$out/share/man"'';
23   meta = {
24     homepage = "http://www.openwall.com/popa3d/";
25     description = "Tiny POP3 daemon with security as the primary goal";
26     mainProgram = "popa3d";
27     platforms = lib.platforms.linux;
28   };