2021-01-25 08:26:54 +00:00
|
|
|
{ lib, fetchurl, alsaLib, 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-03-09 08:42:24 +00:00
|
|
|
version = "0.9.1";
|
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-03-09 08:42:24 +00:00
|
|
|
sha256 = "sha256-VNcI5QOVacHBcI6psEvhm7+cOTpwr2pMVXmk7nMXNiY=";
|
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
|
|
|
|
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;
|
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|