2012-03-31 22:22:19 +02:00
|
|
|
{ stdenv, fetchurl, alsaLib, fluidsynth, jackaudio, qt4 }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "qsynth-${version}";
|
2014-01-18 21:14:32 +01:00
|
|
|
version = "0.3.8";
|
2012-03-31 22:22:19 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/qsynth/${name}.tar.gz";
|
2014-01-18 21:14:32 +01:00
|
|
|
sha256 = "0wmq61cq93x2l00xwr871373mj3dwamz1dg6v62x7s8m1612ndrw";
|
2012-03-31 22:22:19 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ alsaLib fluidsynth jackaudio qt4 ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Fluidsynth GUI";
|
|
|
|
homepage = http://sourceforge.net/projects/qsynth;
|
|
|
|
license = licenses.gpl2Plus;
|
2014-01-19 12:26:35 +01:00
|
|
|
platforms = platforms.linux;
|
2012-03-31 22:22:19 +02:00
|
|
|
maintainers = [ maintainers.goibhniu ];
|
|
|
|
};
|
|
|
|
}
|