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