2019-10-10 22:58:45 +01:00
|
|
|
{ stdenv, fetchurl, alsaLib, fluidsynth, libjack2, autoconf, pkgconfig
|
|
|
|
, mkDerivation, qtbase, qttools, qtx11extras
|
|
|
|
}:
|
2012-03-31 21:22:19 +01:00
|
|
|
|
2019-10-10 22:58:45 +01:00
|
|
|
mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "qsynth";
|
2019-10-23 19:43:28 +01:00
|
|
|
version = "0.6.0";
|
2012-03-31 21:22:19 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "mirror://sourceforge/qsynth/${pname}-${version}.tar.gz";
|
2019-10-23 19:43:28 +01:00
|
|
|
sha256 = "173v0jqybi5szxxvj4n6wyg9sj54rmm6pxwhynx8wkm7nsbh0aij";
|
2012-03-31 21:22:19 +01:00
|
|
|
};
|
|
|
|
|
2019-04-04 17:17:56 +01:00
|
|
|
nativeBuildInputs = [ autoconf pkgconfig ];
|
2017-12-26 03:18:10 +00:00
|
|
|
|
2019-10-10 22:58:45 +01:00
|
|
|
buildInputs = [ alsaLib fluidsynth libjack2 qtbase qttools qtx11extras ];
|
2012-03-31 21:22:19 +01:00
|
|
|
|
2017-12-26 03:18:10 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2012-03-31 21:22:19 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Fluidsynth GUI";
|
2017-11-10 21:13:27 +00:00
|
|
|
homepage = https://sourceforge.net/projects/qsynth;
|
2012-03-31 21:22:19 +01:00
|
|
|
license = licenses.gpl2Plus;
|
2017-12-26 03:18:10 +00:00
|
|
|
maintainers = with maintainers; [ goibhniu ];
|
2014-01-19 11:26:35 +00:00
|
|
|
platforms = platforms.linux;
|
2012-03-31 21:22:19 +01:00
|
|
|
};
|
|
|
|
}
|