mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 14:32:59 +00:00
jackaudio: only add makeWrapper
when needed
The `wrapProgram` usage is behind a conditional below
This commit is contained in:
parent
540d99b6ca
commit
7130bf3097
@ -39,7 +39,8 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
|
||||
outputs = [ "out" "dev" ];
|
||||
|
||||
nativeBuildInputs = [ pkg-config python makeWrapper wafHook ];
|
||||
nativeBuildInputs = [ pkg-config python wafHook ]
|
||||
++ lib.optionals (optDbus != null) [ makeWrapper ];
|
||||
buildInputs = [ libsamplerate libsndfile readline eigen celt
|
||||
optDbus optPythonDBus optLibffado optAlsaLib optLibopus
|
||||
] ++ lib.optionals stdenv.hostPlatform.isDarwin [
|
||||
|
Loading…
Reference in New Issue
Block a user