summary refs log blame commit diff
path: root/pkgs/servers/mail/petidomo/default.nix
blob: c97d8e4ccf388d720424d930824d6b9578d7cf3c (plain) (tree)
1
2
3
4
5
6
7
8
                                                                               

                         
                        


                                                         
                                                                    



                               
                                                    





                                
                                                
                                                                        
                                           

                                          
                                                  

    
{ stdenv, fetchurl, flex, bison, sendmailPath ? "/run/wrappers/bin/sendmail" }:

stdenv.mkDerivation rec {
  name = "petidomo-4.3";

  src = fetchurl {
    url = "mirror://sourceforge/petidomo/${name}.tar.gz";
    sha256 = "0x4dbxc4fcfg1rw5ywpcypvylnzn3y4rh0m6fz4h4cdnzb8p1lvm";
  };

  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.peti ];
  };
}