nixpkgs/pkgs/tools/misc/texi2mdoc/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

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 ];
};
}