2018-07-21 01:44:44 +01:00
|
|
|
{ stdenv, fetchFromGitHub, fftw, qtbase, qtmultimedia, qmake
|
2015-08-31 18:28:43 +01:00
|
|
|
, alsaSupport ? true, alsaLib ? 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
|
|
|
|
|
|
|
assert alsaSupport -> alsaLib != null;
|
|
|
|
assert jackSupport -> libjack2 != null;
|
2015-08-31 18:34:57 +01:00
|
|
|
assert portaudioSupport -> portaudio != null;
|
2015-01-11 02:19:40 +00:00
|
|
|
|
2016-05-08 14:02:35 +01:00
|
|
|
with stdenv.lib;
|
|
|
|
|
2016-01-24 19:31:44 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-01-11 02:19:40 +00:00
|
|
|
name = "fmit-${version}";
|
2018-03-25 21:05:18 +01:00
|
|
|
version = "1.1.14";
|
2015-01-11 02:19:40 +00:00
|
|
|
|
2015-06-15 20:34:30 +01:00
|
|
|
src = fetchFromGitHub {
|
2018-03-25 21:05:18 +01:00
|
|
|
sha256 = "18gvl8smcnigzldy1acs5h8rscf287b39xi4y2cl5armqbj0y38x";
|
2015-06-15 20:34:30 +01:00
|
|
|
rev = "v${version}";
|
|
|
|
repo = "fmit";
|
|
|
|
owner = "gillesdegottex";
|
2015-01-11 02:19:40 +00:00
|
|
|
};
|
|
|
|
|
2017-06-02 16:40:19 +01:00
|
|
|
nativeBuildInputs = [ qmake ];
|
2017-03-05 15:43:23 +00:00
|
|
|
buildInputs = [ fftw qtbase qtmultimedia ]
|
2016-05-08 14:02:35 +01:00
|
|
|
++ optionals alsaSupport [ alsaLib ]
|
|
|
|
++ 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
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
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
|
|
|
'';
|
2015-06-15 20:34:30 +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
|
|
|
};
|
|
|
|
}
|