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