fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ stdenv, fetchurl, perl }:
2
3stdenv.mkDerivation rec {
4 name = "texi2html-1.82";
5
6 src = fetchurl {
7 url = "mirror://savannah/texi2html/${name}.tar.bz2";
8 sha256 = "1wdli2szkgm3l0vx8rf6lylw0b0m47dlz9iy004n928nqkzix76n";
9 };
10
11 buildInputs = [perl];
12
13 meta = {
14 description = "Perl script which converts Texinfo source files to HTML output";
15 homepage = http://www.nongnu.org/texi2html/;
16 license = stdenv.lib.licenses.gpl2;
17 maintainers = [stdenv.lib.maintainers.marcweber];
18 platforms = stdenv.lib.platforms.unix;
19 };
20}