2021-01-25 08:26:54 +00:00
|
|
|
{ lib, mkDerivation, fetchFromGitHub, fftw, qtbase, qtmultimedia, qmake, itstool, wrapQtAppsHook
|
2021-06-10 03:57:09 +01:00
|
|
|
, alsaSupport ? true, alsa-lib ? null
|
2015-08-31 18:34:57 +01:00
|
|
|
, jackSupport ? false, libjack2 ? null
|
|
|
|
, portaudioSupport ? false, portaudio ? null }:
|
2015-08-06 06:20:12 +01:00
|
|
|
|
2021-06-10 03:57:09 +01:00
|
|
|
assert alsaSupport -> alsa-lib != null;
|
2015-08-06 06:20:12 +01:00
|
|
|
assert jackSupport -> libjack2 != null;
|
2015-08-31 18:34:57 +01:00
|
|
|
assert portaudioSupport -> portaudio != null;
|
2015-01-11 02:19:40 +00:00
|
|
|
|
2021-01-15 13:21:58 +00:00
|
|
|
with lib;
|
2016-05-08 14:02:35 +01:00
|
|
|
|
2019-08-14 18:54:19 +01:00
|
|
|
mkDerivation rec {
|
|
|
|
pname = "fmit";
|
2020-07-27 17:37:13 +01:00
|
|
|
version = "1.2.14";
|
2015-01-11 02:19:40 +00:00
|
|
|
|
2015-06-15 20:34:30 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "gillesdegottex";
|
2019-08-14 18:54:19 +01:00
|
|
|
repo = "fmit";
|
|
|
|
rev = "v${version}";
|
2020-07-27 17:37:13 +01:00
|
|
|
sha256 = "1q062pfwz2vr9hbfn29fv54ip3jqfd9r99nhpr8w7mn1csy38azx";
|
2015-01-11 02:19:40 +00:00
|
|
|
};
|
|
|
|
|
2019-08-14 18:54:19 +01:00
|
|
|
nativeBuildInputs = [ qmake itstool wrapQtAppsHook ];
|
2017-03-05 15:43:23 +00:00
|
|
|
buildInputs = [ fftw qtbase qtmultimedia ]
|
2021-06-10 03:57:09 +01:00
|
|
|
++ optionals alsaSupport [ alsa-lib ]
|
2016-05-08 14:02:35 +01:00
|
|
|
++ optionals jackSupport [ libjack2 ]
|
|
|
|
++ optionals portaudioSupport [ portaudio ];
|
2015-08-06 06:10:15 +01:00
|
|
|
|
2016-05-08 16:33:43 +01:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace fmit.pro --replace '$$FMITVERSIONGITPRO' '${version}'
|
|
|
|
'';
|
|
|
|
|
2016-04-16 20:59:19 +01:00
|
|
|
preConfigure = ''
|
|
|
|
qmakeFlags="$qmakeFlags \
|
2016-05-08 14:02:35 +01:00
|
|
|
CONFIG+=${optionalString alsaSupport "acs_alsa"} \
|
|
|
|
CONFIG+=${optionalString jackSupport "acs_jack"} \
|
|
|
|
CONFIG+=${optionalString portaudioSupport "acs_portaudio"} \
|
2016-04-16 20:59:19 +01:00
|
|
|
PREFIXSHORTCUT=$out"
|
2015-08-06 06:10:15 +01:00
|
|
|
'';
|
2015-01-11 02:19:40 +00:00
|
|
|
|
2016-05-08 14:02:35 +01:00
|
|
|
meta = {
|
2015-01-11 02:19:40 +00:00
|
|
|
description = "Free Musical Instrument Tuner";
|
|
|
|
longDescription = ''
|
2015-08-06 06:10:15 +01:00
|
|
|
FMIT is a graphical utility for tuning musical instruments, with error
|
|
|
|
and volume history, and advanced features.
|
2015-01-11 02:19:40 +00:00
|
|
|
'';
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://gillesdegottex.github.io/fmit/";
|
2015-05-28 18:20:29 +01:00
|
|
|
license = licenses.gpl3Plus;
|
2015-08-06 06:10:15 +01:00
|
|
|
platforms = platforms.linux;
|
2015-01-11 02:19:40 +00:00
|
|
|
};
|
|
|
|
}
|