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