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