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

54 lines
1.5 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, fftw, freeglut, mesa_glu, qtbase, qtmultimedia, qmakeHook
, alsaSupport ? true, alsaLib ? null
, jackSupport ? false, libjack2 ? null
, portaudioSupport ? false, portaudio ? null }:
assert alsaSupport -> alsaLib != null;
assert jackSupport -> libjack2 != null;
assert portaudioSupport -> portaudio != null;
2016-05-08 13:02:35 +00:00
with stdenv.lib;
stdenv.mkDerivation rec {
name = "fmit-${version}";
2016-08-03 22:16:53 +00:00
version = "1.1.8";
2015-06-15 19:34:30 +00:00
src = fetchFromGitHub {
2016-08-03 22:16:53 +00:00
sha256 = "14vx4p1h3c6frvv8dam4ymz588zpycmg17pxfkmx4m7pszhlin6b";
2015-06-15 19:34:30 +00:00
rev = "v${version}";
repo = "fmit";
owner = "gillesdegottex";
};
buildInputs = [ fftw qtbase qtmultimedia qmakeHook ]
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.
'';
2015-06-15 19:34:30 +00:00
homepage = http://gillesdegottex.github.io/fmit/;
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ nckx ];
};
}