nixpkgs/pkgs/servers/mail/petidomo/default.nix
Bjørn Forsman bd01fad0ed Captialize meta.description of all packages
In line with the Nixpkgs manual.

A mechanical change, done with this command:

  find pkgs -name "*.nix" | \
      while read f; do \
          sed -e 's/description\s*=\s*"\([a-z]\)/description = "\u\1/' -i "$f"; \
      done

I manually skipped some:

* Descriptions starting with an abbreviation, a user name or package name
* Frequently generated expressions (haskell-packages.nix)
2016-06-20 13:55:52 +02:00

28 lines
705 B
Nix

{ stdenv, fetchurl, flex, bison, sendmailPath ? "/var/setuid-wrappers/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 ];
};
}