2021-01-15 08:07:56 +01:00
|
|
|
{ lib, stdenv, fetchurl, flex, bison, sendmailPath ? "/run/wrappers/bin/sendmail" }:
|
2013-02-09 20:27:44 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-05-23 17:07:31 +02:00
|
|
|
pname = "petidomo";
|
|
|
|
version = "4.3";
|
2013-02-09 20:27:44 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-05-23 17:07:31 +02:00
|
|
|
url = "mirror://sourceforge/petidomo/${pname}-${version}.tar.gz";
|
2013-02-11 14:37:15 +01:00
|
|
|
sha256 = "0x4dbxc4fcfg1rw5ywpcypvylnzn3y4rh0m6fz4h4cdnzb8p1lvm";
|
2013-02-09 20:27:44 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ flex bison ];
|
|
|
|
|
2018-07-25 23:44:21 +02:00
|
|
|
configureFlags = [ "--with-mta=${sendmailPath}" ];
|
2013-02-09 20:27:44 +01:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
meta = {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://petidomo.sourceforge.net/";
|
2016-06-20 12:53:46 +02:00
|
|
|
description = "A simple and easy to administer mailing list server";
|
2021-01-15 08:07:56 +01:00
|
|
|
license = lib.licenses.gpl3Plus;
|
2013-02-09 20:27:44 +01:00
|
|
|
|
2021-01-15 08:07:56 +01:00
|
|
|
platforms = lib.platforms.unix;
|
|
|
|
maintainers = [ lib.maintainers.peti ];
|
2013-02-09 20:27:44 +01:00
|
|
|
};
|
|
|
|
}
|