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