Merge pull request #123987 from LeSuisse/htmldoc-1.9.12
htmldoc: 1.9.11 -> 1.9.12
This commit is contained in:
commit
117a632169
1 changed files with 7 additions and 4 deletions
|
@ -1,20 +1,23 @@
|
|||
{ lib, stdenv, fetchFromGitHub, zlib, libpng, SystemConfiguration, Foundation }:
|
||||
{ lib, stdenv, fetchFromGitHub, zlib, libpng, libjpeg, SystemConfiguration, Foundation, pkg-config }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "htmldoc";
|
||||
version = "1.9.11";
|
||||
version = "1.9.12";
|
||||
src = fetchFromGitHub {
|
||||
owner = "michaelrsweet";
|
||||
repo = "htmldoc";
|
||||
rev = "v${version}";
|
||||
sha256 = "0660829zjfdm6vzx14z7gvsfipsb7h0z74gbkyp2ncg3g2432s4n";
|
||||
sha256 = "1dqima0g3j301wwzjxdhzk5pvfj724rl615gf8ssxxajfnid1gl0";
|
||||
};
|
||||
buildInputs = [ zlib libpng ]
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
buildInputs = [ zlib libpng libjpeg ]
|
||||
++ lib.optionals stdenv.isDarwin [ Foundation SystemConfiguration ];
|
||||
|
||||
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; [ shanemikel ];
|
||||
platforms = platforms.unix;
|
||||
|
|
Loading…
Reference in a new issue