nixpkgs/pkgs/applications/audio/fmit/default.nix

54 lines
1.5 KiB
Nix
Raw Normal View History

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