0f42b8b573
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. This update was made based on information from https://repology.org/metapackage/fmit/versions. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 1.1.14 with grep in /nix/store/3n6m5ipvpy4wkxaagzq2gwx7w3zvk6m1-fmit-1.1.14 - directory tree listing: https://gist.github.com/1f691b378929e55b2019578fa597a792
53 lines
1.5 KiB
Nix
53 lines
1.5 KiB
Nix
{ stdenv, fetchFromGitHub, fftw, freeglut, libGLU, qtbase, qtmultimedia, qmake
|
|
, alsaSupport ? true, alsaLib ? null
|
|
, jackSupport ? false, libjack2 ? null
|
|
, portaudioSupport ? false, portaudio ? null }:
|
|
|
|
assert alsaSupport -> alsaLib != null;
|
|
assert jackSupport -> libjack2 != null;
|
|
assert portaudioSupport -> portaudio != null;
|
|
|
|
with stdenv.lib;
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "fmit-${version}";
|
|
version = "1.1.14";
|
|
|
|
src = fetchFromGitHub {
|
|
sha256 = "18gvl8smcnigzldy1acs5h8rscf287b39xi4y2cl5armqbj0y38x";
|
|
rev = "v${version}";
|
|
repo = "fmit";
|
|
owner = "gillesdegottex";
|
|
};
|
|
|
|
nativeBuildInputs = [ qmake ];
|
|
buildInputs = [ fftw qtbase qtmultimedia ]
|
|
++ optionals alsaSupport [ alsaLib ]
|
|
++ optionals jackSupport [ libjack2 ]
|
|
++ optionals portaudioSupport [ portaudio ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace fmit.pro --replace '$$FMITVERSIONGITPRO' '${version}'
|
|
'';
|
|
|
|
preConfigure = ''
|
|
qmakeFlags="$qmakeFlags \
|
|
CONFIG+=${optionalString alsaSupport "acs_alsa"} \
|
|
CONFIG+=${optionalString jackSupport "acs_jack"} \
|
|
CONFIG+=${optionalString portaudioSupport "acs_portaudio"} \
|
|
PREFIXSHORTCUT=$out"
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
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;
|
|
};
|
|
}
|