f5fa5fa4d6
* 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
22 lines
539 B
Nix
22 lines
539 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "texi2mdoc-${version}";
|
|
version = "0.1.2";
|
|
|
|
src = fetchurl {
|
|
url = "http://mdocml.bsd.lv/texi2mdoc/snapshots/${name}.tgz";
|
|
sha256 = "1zjb61ymwfkw6z5g0aqmsn6qpw895zdxv7fv3059gj3wqa3zsibs";
|
|
};
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://mdocml.bsd.lv/;
|
|
description = "converter from Texinfo into mdoc";
|
|
license = licenses.isc;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ ramkromberg ];
|
|
};
|
|
}
|