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";
|
2020-08-18 03:06:27 +01:00
|
|
|
version = "0.6.3";
|
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";
|
2020-08-18 03:06:27 +01:00
|
|
|
sha256 = "0xiqmpzpxjvh32vivfj6h33w0ahmyfjzjb41b6fnf92bbg9k6mqv";
|
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";
|
2020-04-01 02:11:51 +01: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
|
|
|
};
|
|
|
|
}
|