nixpkgs/pkgs/tools/text/qprint/default.nix
Silvan Mosberger f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* pkgs: refactor needless quoting of homepage meta attribute

A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.

* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit

* Fixed some instances
2017-08-01 22:03:30 +02:00

29 lines
639 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;
};
}