nixpkgs/pkgs/servers/mail/petidomo/default.nix

28 lines
690 B
Nix
Raw Normal View History

2021-01-15 07:07:56 +00:00
{ lib, stdenv, fetchurl, flex, bison, sendmailPath ? "/run/wrappers/bin/sendmail" }:
2013-02-09 19:27:44 +00:00
stdenv.mkDerivation rec {
2013-02-11 13:37:15 +00:00
name = "petidomo-4.3";
2013-02-09 19:27:44 +00:00
src = fetchurl {
url = "mirror://sourceforge/petidomo/${name}.tar.gz";
2013-02-11 13:37:15 +00:00
sha256 = "0x4dbxc4fcfg1rw5ywpcypvylnzn3y4rh0m6fz4h4cdnzb8p1lvm";
2013-02-09 19:27:44 +00:00
};
buildInputs = [ flex bison ];
2018-07-25 21:44:21 +00:00
configureFlags = [ "--with-mta=${sendmailPath}" ];
2013-02-09 19:27:44 +00:00
enableParallelBuilding = true;
doCheck = true;
meta = {
homepage = "http://petidomo.sourceforge.net/";
description = "A simple and easy to administer mailing list server";
2021-01-15 07:07:56 +00:00
license = lib.licenses.gpl3Plus;
2013-02-09 19:27:44 +00:00
2021-01-15 07:07:56 +00:00
platforms = lib.platforms.unix;
maintainers = [ lib.maintainers.peti ];
2013-02-09 19:27:44 +00:00
};
}