3
0
Fork 0
forked from mirrors/nixpkgs

petidomo: add version 4.2

This commit is contained in:
Peter Simons 2013-02-09 20:27:44 +01:00
parent 221e8b1649
commit 361b2facee
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ stdenv, fetchurl, flex, bison, sendmailPath ? "/var/setuid-wrappers/sendmail" }:
stdenv.mkDerivation rec {
name = "petidomo-4.2";
src = fetchurl {
url = "mirror://sourceforge/petidomo/${name}.tar.gz";
sha256 = "0rckzsiqg819ids5784gmlf5p1lbjvavz0f5mwn10h34kclhi8bz";
};
buildInputs = [ flex bison ];
configureFlags = "--with-mta=${sendmailPath}";
enableParallelBuilding = true;
doCheck = true;
meta = {
homepage = "http://petidomo.sourceforge.net/";
description = "a simple and easy to administer mailing list server";
license = stdenv.lib.licenses.gpl3plus;
platforms = stdenv.lib.platforms.unix;
maintainers = [ stdenv.lib.maintainers.simons ];
};
}

View file

@ -5504,6 +5504,8 @@ let
nginx = callPackage ../servers/http/nginx { };
petidomo = callPackage ../servers/mail/petidomo { };
popa3d = callPackage ../servers/mail/popa3d { };
postfix = callPackage ../servers/mail/postfix { };