2021-01-25 09:26:54 +01:00
|
|
|
{ lib, fetchurl, alsaLib, fluidsynth, libjack2, autoconf, pkg-config
|
2019-10-10 23:58:45 +02:00
|
|
|
, mkDerivation, qtbase, qttools, qtx11extras
|
|
|
|
}:
|
2012-03-31 22:22:19 +02:00
|
|
|
|
2019-10-10 23:58:45 +02:00
|
|
|
mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "qsynth";
|
2020-08-18 04:06:27 +02:00
|
|
|
version = "0.6.3";
|
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";
|
2020-08-18 04:06:27 +02:00
|
|
|
sha256 = "0xiqmpzpxjvh32vivfj6h33w0ahmyfjzjb41b6fnf92bbg9k6mqv";
|
2012-03-31 22:22:19 +02:00
|
|
|
};
|
|
|
|
|
2021-01-19 07:50:56 +01:00
|
|
|
nativeBuildInputs = [ autoconf pkg-config ];
|
2017-12-26 04:18:10 +01:00
|
|
|
|
2019-10-10 23:58:45 +02:00
|
|
|
buildInputs = [ alsaLib fluidsynth libjack2 qtbase qttools qtx11extras ];
|
2012-03-31 22:22:19 +02:00
|
|
|
|
2017-12-26 04:18:10 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2012-03-31 22:22:19 +02:00
|
|
|
description = "Fluidsynth GUI";
|
2020-04-01 03:11:51 +02: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
|
|
|
};
|
|
|
|
}
|