2019-04-04 09:17:56 -07:00
|
|
|
{ stdenv, fetchurl, alsaLib, fluidsynth, libjack2, qt5, autoconf, pkgconfig }:
|
2012-03-31 13:22:19 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "qsynth";
|
2019-07-16 06:52:57 -07:00
|
|
|
version = "0.5.7";
|
2012-03-31 13:22:19 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 05:41:18 -07:00
|
|
|
url = "mirror://sourceforge/qsynth/${pname}-${version}.tar.gz";
|
2019-07-16 06:52:57 -07:00
|
|
|
sha256 = "18im4w8agj60nkppwbkxqnhpp13z5li3w30kklv4lgs20rvgbvl6";
|
2012-03-31 13:22:19 -07:00
|
|
|
};
|
|
|
|
|
2019-04-04 09:17:56 -07:00
|
|
|
nativeBuildInputs = [ autoconf pkgconfig ];
|
2017-12-25 19:18:10 -08:00
|
|
|
|
2019-04-04 09:17:56 -07:00
|
|
|
buildInputs = [ alsaLib fluidsynth libjack2 qt5.qtbase qt5.qttools qt5.qtx11extras ];
|
2012-03-31 13:22:19 -07:00
|
|
|
|
2017-12-25 19:18:10 -08:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2012-03-31 13:22:19 -07:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Fluidsynth GUI";
|
2017-11-10 13:13:27 -08:00
|
|
|
homepage = https://sourceforge.net/projects/qsynth;
|
2012-03-31 13:22:19 -07:00
|
|
|
license = licenses.gpl2Plus;
|
2017-12-25 19:18:10 -08:00
|
|
|
maintainers = with maintainers; [ goibhniu ];
|
2014-01-19 03:26:35 -08:00
|
|
|
platforms = platforms.linux;
|
2012-03-31 13:22:19 -07:00
|
|
|
};
|
|
|
|
}
|