Adding Qsynth (GUI) and fluidsynth (CLI), Soundfont2 based synthesizer

svn path=/nixpkgs/trunk/; revision=33504
This commit is contained in:
Cillian de Roiste
2012-03-31 20:22:19 +00:00
parent 459e580df1
commit 5f5d21bbeb
3 changed files with 45 additions and 0 deletions
@@ -0,0 +1,21 @@
{ stdenv, fetchurl, alsaLib, glib, jackaudio, libsndfile, pkgconfig
, pulseaudio }:
stdenv.mkDerivation rec {
name = "fluidsynth-${version}";
version = "1.1.5";
src = fetchurl {
url = "mirror://sourceforge/fluidsynth/${name}.tar.bz2";
sha256 = "1x73a5rsyvfmh1j0484kzgnk251q61g1g2jdja673l8fizi0xd24";
};
buildInputs = [ alsaLib glib jackaudio libsndfile pkgconfig pulseaudio ];
meta = with stdenv.lib; {
description = "real-time software synthesizer based on the SoundFont 2 specifications";
homepage = http://www.fluidsynth.org;
license = licenses.lgpl2;
maintainers = [ maintainers.goibhniu ];
};
}