about summary refs log tree commit diff
path: root/pkgs/applications/misc/htmldoc/default.nix
blob: e8274418ae16938aee987b75e98a8549edd8e3c5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ stdenv, fetchurl, fltk, openssl, libpng, libjpeg }:
stdenv.mkDerivation rec {
  name = "htmldoc-1.8.27";
  src = fetchurl {
    url = http://ftp.easysw.com/pub/htmldoc/1.8.27/htmldoc-1.8.27-source.tar.bz2;
    sha256 = "04wnxgx6fxdxwiy9vbawdibngwf55mi01hjrr5fkfs22fcix5zw9";
  };
  buildInputs = [ fltk openssl libpng libjpeg ];
  meta = {
    homepage = http://www.htmldoc.org/;
    description = "Converts HTML files to indexed HTML, PS or PDF";
    license = stdenv.lib.licenses.gpl2;
    maintainers = with stdenv.lib.maintainers; [ viric ];
    platforms = with stdenv.lib.platforms; linux;
  };
}