From f53195f29e69dbb79f44039b809bb1fa40f34ac2 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 28 Oct 2009 14:06:56 +0000 Subject: * Improved a bunch of "name" attributes (mostly missing version numbers). svn path=/nixpkgs/trunk/; revision=17991 --- pkgs/development/tools/misc/texi2html/default.nix | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pkgs/development/tools/misc/texi2html/default.nix (limited to 'pkgs/development/tools/misc/texi2html/default.nix') 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; + }; +} -- cgit 1.4.1