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

28 lines
651 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "ascii-${version}";
version = "3.15";
src = fetchurl {
url = "http://www.catb.org/~esr/ascii/${name}.tar.gz";
sha256 = "0pzzfljg2ijnnys3fzj3f2p288sl5cgk83a2mpcm679pcj5xpqdc";
};
prePatch = ''
sed -i -e "s|^PREFIX = .*|PREFIX = $out|" Makefile
'';
preInstall = ''
mkdir -vp "$out/bin" "$out/share/man/man1"
'';
meta = with stdenv.lib; {
description = "Interactive ASCII name and synonym chart";
homepage = http://www.catb.org/~esr/ascii/;
license = licenses.bsd3;
platforms = platforms.all;
maintainers = [ maintainers.bjornfor ];
};
}