petidomo: add version 4.2
This commit is contained in:
parent
221e8b1649
commit
361b2facee
27
pkgs/servers/mail/petidomo/default.nix
Normal file
27
pkgs/servers/mail/petidomo/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user