nixpkgs/pkgs/tools/text/qprint/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

29 lines
641 B
Nix

{ fetchurl, stdenv }:
stdenv.mkDerivation rec {
name = "qprint-1.1";
src = fetchurl {
url = "http://www.fourmilab.ch/webtools/qprint/${name}.tar.gz";
sha256 = "1701cnb1nl84rmcpxzq11w4cyj4385jh3gx4aqxznwf8a4fwmagz";
};
doCheck = true;
checkTarget = "wringer";
preInstall = ''
mkdir -p $out/bin
mkdir -p $out/share/man/man1
'';
meta = {
homepage = "http://www.fourmilab.ch/webtools/qprint/";
license = stdenv.lib.licenses.publicDomain;
description = "Encode and decode Quoted-Printable files";
maintainers = [ stdenv.lib.maintainers.tv ];
platforms = stdenv.lib.platforms.all;
};
}