mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
lingot: add jackSupport option
This commit is contained in:
parent
bd3bf7ee76
commit
5d29fd1359
@ -5,8 +5,10 @@
|
||||
, gtk3
|
||||
, wrapGAppsHook
|
||||
, alsaLib
|
||||
, libjack2
|
||||
, libpulseaudio
|
||||
, fftw
|
||||
, jackSupport ? true
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@ -29,11 +31,9 @@ stdenv.mkDerivation rec {
|
||||
alsaLib
|
||||
libpulseaudio
|
||||
fftw
|
||||
];
|
||||
] ++ stdenv.lib.optional jackSupport libjack2;
|
||||
|
||||
configureFlags = [
|
||||
"--disable-jack"
|
||||
];
|
||||
configureFlags = stdenv.lib.optional (!jackSupport) "--disable-jack";
|
||||
|
||||
meta = {
|
||||
description = "Not a Guitar-Only tuner";
|
||||
|
Loading…
Reference in New Issue
Block a user