mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00

This reverts commit65a333600d
. This wasn't tested for correctness with something like fodwatch [0], and should not have been (self-)merged so quickly, especially without further review. It also resulted in the breakage of at least one package [1] (and that's the one we know of and was caught). A few packages that were updated in between this commit and this revert were not reverted back to using `rev`, but other than that, this is a 1:1 revert. [0]: https://codeberg.org/raphaelr/fodwatch [1]: https://github.com/NixOS/nixpkgs/pull/396904 /758551e458
78 lines
1.6 KiB
Nix
78 lines
1.6 KiB
Nix
{
|
|
lib,
|
|
mkDerivation,
|
|
fetchFromGitHub,
|
|
fftw,
|
|
qtbase,
|
|
qtmultimedia,
|
|
qmake,
|
|
itstool,
|
|
wrapQtAppsHook,
|
|
alsaSupport ? true,
|
|
alsa-lib ? null,
|
|
jackSupport ? false,
|
|
libjack2 ? null,
|
|
portaudioSupport ? false,
|
|
portaudio ? null,
|
|
}:
|
|
|
|
assert alsaSupport -> alsa-lib != null;
|
|
assert jackSupport -> libjack2 != null;
|
|
assert portaudioSupport -> portaudio != null;
|
|
|
|
mkDerivation rec {
|
|
pname = "fmit";
|
|
version = "1.2.14";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "gillesdegottex";
|
|
repo = "fmit";
|
|
rev = "v${version}";
|
|
sha256 = "1q062pfwz2vr9hbfn29fv54ip3jqfd9r99nhpr8w7mn1csy38azx";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
qmake
|
|
itstool
|
|
wrapQtAppsHook
|
|
];
|
|
buildInputs =
|
|
[
|
|
fftw
|
|
qtbase
|
|
qtmultimedia
|
|
]
|
|
++ lib.optionals alsaSupport [ alsa-lib ]
|
|
++ lib.optionals jackSupport [ libjack2 ]
|
|
++ lib.optionals portaudioSupport [ portaudio ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace fmit.pro --replace '$$FMITVERSIONGITPRO' '${version}'
|
|
'';
|
|
|
|
qmakeFlags =
|
|
[
|
|
"PREFIXSHORTCUT=${placeholder "out"}"
|
|
]
|
|
++ lib.optionals alsaSupport [
|
|
"CONFIG+=acs_alsa"
|
|
]
|
|
++ lib.optionals jackSupport [
|
|
"CONFIG+=acs_jack"
|
|
]
|
|
++ lib.optionals portaudioSupport [
|
|
"CONFIG+=acs_portaudio"
|
|
];
|
|
|
|
meta = with lib; {
|
|
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;
|
|
maintainers = with maintainers; [ orivej ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|