nixpkgs/pkgs/tools/typesetting/htmldoc/default.nix

43 lines
1.3 KiB
Nix

{ lib, stdenv, testers, fetchFromGitHub, zlib, libpng, libjpeg, SystemConfiguration, Foundation, pkg-config, htmldoc }:
stdenv.mkDerivation rec {
pname = "htmldoc";
version = "1.9.16";
src = fetchFromGitHub {
owner = "michaelrsweet";
repo = "htmldoc";
rev = "v${version}";
sha256 = "117cj5sfzl18gan53ld8lxb0wycizcp9jcakcs3nsvnss99rw3a6";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ zlib libpng libjpeg ]
++ lib.optionals stdenv.isDarwin [ Foundation SystemConfiguration ];
# do not generate universal binary on Darwin
# because it is not supported by Nix's clang
postPatch = ''
substituteInPlace configure --replace "-arch x86_64 -arch arm64" ""
'';
passthru.tests = testers.testVersion {
package = htmldoc;
command = "htmldoc --version";
};
meta = with lib; {
description = "Converts HTML files to PostScript and PDF";
homepage = "https://michaelrsweet.github.io/htmldoc";
changelog = "https://github.com/michaelrsweet/htmldoc/releases/tag/v${version}";
license = licenses.gpl2Only;
maintainers = with maintainers; [ ];
platforms = platforms.unix;
longDescription = ''
HTMLDOC is a program that reads HTML source files or web pages and
generates corresponding HTML, PostScript, or PDF files with an optional
table of contents.
'';
};
}