2013-02-09 20:27:44 +01:00
|
|
|
{ stdenv, fetchurl, flex, bison, sendmailPath ? "/var/setuid-wrappers/sendmail" }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-02-11 14:37:15 +01:00
|
|
|
name = "petidomo-4.3";
|
2013-02-09 20:27:44 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/petidomo/${name}.tar.gz";
|
2013-02-11 14:37:15 +01:00
|
|
|
sha256 = "0x4dbxc4fcfg1rw5ywpcypvylnzn3y4rh0m6fz4h4cdnzb8p1lvm";
|
2013-02-09 20:27:44 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
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";
|
2013-02-10 17:02:27 +01:00
|
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
2013-02-09 20:27:44 +01:00
|
|
|
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.simons ];
|
|
|
|
};
|
|
|
|
}
|