summary refs log tree commit diff
path: root/pkgs/development/tools/misc/texi2html/default.nix
blob: 1f36a14fa9796d28d0551267ca8f6fff4345717b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, fetchurl, perl }:

stdenv.mkDerivation rec {
  name = "texi2html-1.82";

  src = fetchurl {
    url = "mirror://savannah/texi2html/${name}.tar.bz2";
    sha256 = "1wdli2szkgm3l0vx8rf6lylw0b0m47dlz9iy004n928nqkzix76n";
  };

  buildInputs = [perl];

  meta = { 
    description = "Perl script which converts Texinfo source files to HTML output";
    homepage = http://www.nongnu.org/texi2html/;
    license = stdenv.lib.licenses.gpl2;
    maintainers = [stdenv.lib.maintainers.marcweber];
    platforms = stdenv.lib.platforms.linux;
  };
}