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 {
|
|
|
|
name = "qsynth-${version}";
|
2019-04-16 09:43:37 +02:00
|
|
|
version = "0.5.6";
|
2012-03-31 22:22:19 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/qsynth/${name}.tar.gz";
|
2019-04-16 09:43:37 +02:00
|
|
|
sha256 = "0h4hhja8qbyzd6v24flw9wr4mwl03nplryx1gyrppn7sg13l1sx6";
|
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
|
|
|
};
|
|
|
|
}
|