summary refs log tree commit diff
path: root/pkgs/development/tools/misc/texi2html/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/tools/misc/texi2html/default.nix')
-rw-r--r--pkgs/development/tools/misc/texi2html/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/development/tools/misc/texi2html/default.nix b/pkgs/development/tools/misc/texi2html/default.nix
new file mode 100644
index 000000000000..2089142284f4
--- /dev/null
+++ b/pkgs/development/tools/misc/texi2html/default.nix
@@ -0,0 +1,20 @@
+{ stdenv, fetchurl, perl }:
+
+stdenv.mkDerivation rec {
+  name = "texi2html-1.82";
+
+  src = fetchurl {
+    url = "http://www.very-clever.com/download/nongnu/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 = "GPLv2";
+    maintainers = [stdenv.lib.maintainers.marcweber];
+    platforms = stdenv.lib.platforms.linux;
+  };
+}