summary refs log tree commit diff
path: root/pkgs/development/tools/misc/texitohtml/default.nix
blob: db200610a5553912e86ec48c098c9e39fc4e3778 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
args: with args;
stdenv.mkDerivation {
  name = "texi2html";

  src = fetchurl {
    url = http://www.very-clever.com/download/nongnu/texi2html/texi2html-1.82.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 = "GPLv2";
    maintainers = [args.lib.maintainers.marcweber];
    platforms = args.lib.platforms.linux;
  };
}