mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
bd01fad0ed
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)
29 lines
641 B
Nix
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;
|
|
};
|
|
|
|
}
|