lilypond: unbreak build by adding t1utils to buildInputs

lilypond needs the 't1asm' tool from t1utils to build. t1asm used to be
provided by texlive-core, but does no more  (since texlive-core-2014
update).
This commit is contained in:
Bjørn Forsman 2014-06-11 21:11:04 +02:00
parent 86d19319d6
commit 68a6c0e3e9
1 changed files with 3 additions and 2 deletions

View File

@ -1,7 +1,8 @@
{ stdenv, fetchurl, ghostscript, texinfo, imagemagick, texi2html, guile { stdenv, fetchurl, ghostscript, texinfo, imagemagick, texi2html, guile
, python, gettext, flex, perl, bison, pkgconfig, texLive, dblatex , python, gettext, flex, perl, bison, pkgconfig, texLive, dblatex
, fontconfig, freetype, pango, fontforge, help2man, zip, netpbm, groff , fontconfig, freetype, pango, fontforge, help2man, zip, netpbm, groff
, fetchsvn, makeWrapper }: , fetchsvn, makeWrapper, t1utils
}:
stdenv.mkDerivation rec{ stdenv.mkDerivation rec{
majorVersion="2.16"; majorVersion="2.16";
@ -35,7 +36,7 @@ stdenv.mkDerivation rec{
buildInputs = buildInputs =
[ ghostscript texinfo imagemagick texi2html guile dblatex zip netpbm [ ghostscript texinfo imagemagick texi2html guile dblatex zip netpbm
python gettext flex perl bison pkgconfig texLive fontconfig freetype pango python gettext flex perl bison pkgconfig texLive fontconfig freetype pango
fontforge help2man groff makeWrapper fontforge help2man groff makeWrapper t1utils
]; ];
meta = { meta = {