2021-06-10 03:57:09 +01:00
|
|
|
{ lib, fetchurl, alsa-lib, fluidsynth, libjack2, autoconf, pkg-config
|
2019-10-10 22:58:45 +01:00
|
|
|
, 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";
|
2021-09-14 13:36:12 +01:00
|
|
|
version = "0.9.4";
|
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";
|
2021-09-14 13:36:12 +01:00
|
|
|
sha256 = "sha256-dlgIkMde7uv4UlMKEPhtZ7MfSTBc7RvHs+Q2yk+G/JM=";
|
2012-03-31 21:22:19 +01:00
|
|
|
};
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ autoconf pkg-config ];
|
2017-12-26 03:18:10 +00:00
|
|
|
|
2021-06-10 03:57:09 +01:00
|
|
|
buildInputs = [ alsa-lib fluidsynth libjack2 qtbase qttools qtx11extras ];
|
2012-03-31 21:22:19 +01:00
|
|
|
|
2017-12-26 03:18:10 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2012-03-31 21:22:19 +01:00
|
|
|
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
|
|
|
};
|
|
|
|
}
|