mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
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
24 lines
602 B
Nix
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 ];
|
|
};
|
|
}
|