2024-03-17 19:20:54 +00:00
|
|
|
{ lib, stdenv, fetchurl, alsa-lib, fluidsynth, libjack2, cmake, pkg-config
|
|
|
|
, qtbase, qttools, qtx11extras, wrapQtAppsHook
|
2019-10-10 21:58:45 +00:00
|
|
|
}:
|
2012-03-31 20:22:19 +00:00
|
|
|
|
2024-03-17 19:20:54 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "qsynth";
|
2024-06-19 03:27:08 +00:00
|
|
|
version = "1.0.0";
|
2012-03-31 20:22:19 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "mirror://sourceforge/qsynth/${pname}-${version}.tar.gz";
|
2024-06-19 03:27:08 +00:00
|
|
|
hash = "sha256-FOoqnJeh29J0clsqZ+wbhQmsaybrAbIqgeB7m/7Q+3M=";
|
2012-03-31 20:22:19 +00:00
|
|
|
};
|
|
|
|
|
2024-03-17 19:20:54 +00:00
|
|
|
nativeBuildInputs = [ cmake pkg-config wrapQtAppsHook ];
|
2017-12-26 03:18:10 +00:00
|
|
|
|
2021-06-10 02:57:09 +00:00
|
|
|
buildInputs = [ alsa-lib fluidsynth libjack2 qtbase qttools qtx11extras ];
|
2012-03-31 20:22:19 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2012-03-31 20:22:19 +00:00
|
|
|
description = "Fluidsynth GUI";
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "qsynth";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://sourceforge.net/projects/qsynth";
|
2012-03-31 20:22:19 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2024-07-24 09:22:12 +00:00
|
|
|
maintainers = [ ];
|
2014-01-19 11:26:35 +00:00
|
|
|
platforms = platforms.linux;
|
2012-03-31 20:22:19 +00:00
|
|
|
};
|
|
|
|
}
|