Added TiMidity MIDI renderer

svn path=/nixpkgs/trunk/; revision=9359
This commit is contained in:
Michael Raskin 2007-09-23 14:47:11 +00:00
parent e0d357058b
commit e163ec6ebe
2 changed files with 15 additions and 2 deletions

View File

@ -11,7 +11,8 @@ stdenv.mkDerivation rec {
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp.nluug.nl/pub/office/openoffice/stable/2.3.0/OOo_2.3.0_src_core.tar.bz2;
url = http://openoffice.bouncer.osuosl.org/?product=OpenOffice.org&os=src_bzip&lang=core&version=2.3.0;
name = "OOo_2.3.0_src_core.tar.bz2";
sha256 = "0mkxn9qj3f03rjkmxc4937gr2w429hnxzb9j5j2grdknfga5a1c3";
};

View File

@ -2761,7 +2761,15 @@ rec {
};
extraConfig = "CONFIG_FB_SPLASH=y";
}
];
]++
/*(if (getConfig ["kernel" "no_hz"] false) then */[
{
name = "Enable-NO_HZ";
patch = /dev/null;
extraConfig = "NO_HZ=y\n";
}
]/* else [])*/
;
};
libselinux = import ../os-specific/linux/libselinux {
@ -3624,6 +3632,10 @@ rec {
#enableOfficialBranding = true;
};
timidity = import ../tools/misc/timidity {
inherit fetchurl stdenv alsaLib;
};
unison = import ../applications/networking/sync/unison {
inherit fetchurl stdenv ocaml lablgtk makeWrapper;
inherit (xorg) xset fontschumachermisc;