mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
adding texitohtml (dependency of lilypond)
svn path=/nixpkgs/trunk/; revision=17023
This commit is contained in:
parent
4800303718
commit
2f91d73018
19
pkgs/development/tools/misc/texitohtml/default.nix
Normal file
19
pkgs/development/tools/misc/texitohtml/default.nix
Normal file
@ -0,0 +1,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;
|
||||
};
|
||||
}
|
@ -2737,6 +2737,10 @@ let
|
||||
inherit fetchurl stdenv ncurses lzma;
|
||||
};
|
||||
|
||||
texi2html = import ../development/tools/misc/texitohtml {
|
||||
inherit fetchurl stdenv lib perl;
|
||||
};
|
||||
|
||||
uisp = import ../development/tools/misc/uisp {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user