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

24 lines
602 B
Nix

{ stdenv, fetchurl, expat }:
stdenv.mkDerivation rec {
name = "docbook2mdoc-${version}";
version = "0.0.9";
src = fetchurl {
url = "http://mdocml.bsd.lv/docbook2mdoc/snapshots/${name}.tgz";
sha256 = "07il80sg89xf6ym4bry6hxdacfzqgbwkxzyf7bjaihmw5jj0lclk";
};
buildInputs = [ expat.dev ];
makeFlags = [ "PREFIX=$(out)" ];
meta = with stdenv.lib; {
homepage = http://mdocml.bsd.lv/;
description = "converter from DocBook V4.x and v5.x XML into mdoc";
license = licenses.isc;
platforms = platforms.all;
maintainers = with maintainers; [ ramkromberg ];
};
}