biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / servers / mail / petidomo / default.nix
blob64d9ef99bdd3a6469633a8e60ad438d38cb1be7c
1 { lib, stdenv, fetchurl, flex, bison, sendmailPath ? "/run/wrappers/bin/sendmail" }:
3 stdenv.mkDerivation rec {
4   pname = "petidomo";
5   version = "4.3";
7   src = fetchurl {
8     url = "mirror://sourceforge/petidomo/${pname}-${version}.tar.gz";
9     sha256 = "0x4dbxc4fcfg1rw5ywpcypvylnzn3y4rh0m6fz4h4cdnzb8p1lvm";
10   };
12   buildInputs = [ flex bison ];
14   configureFlags = [ "--with-mta=${sendmailPath}" ];
16   enableParallelBuilding = true;
18   doCheck = true;
20   meta = {
21     homepage = "https://petidomo.sourceforge.net/";
22     description = "A simple and easy to administer mailing list server";
23     license = lib.licenses.gpl3Plus;
25     platforms = lib.platforms.unix;
26     maintainers = [ lib.maintainers.peti ];
27   };