Skip to content

Commit

Permalink
Merge pull request NixOS#78481 from Infinisil/mumble-celt
Browse files Browse the repository at this point in the history
mumble: Fix PLUGIN_PATH definition so it can find the CELT library
  • Loading branch information
infinisil committed Jan 26, 2020
2 parents 8c45e95 + cae1bf6 commit 3c5add9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/applications/networking/mumble/default.nix
Expand Up @@ -37,12 +37,12 @@ let
"CONFIG+=bundled-celt"
"CONFIG+=no-bundled-opus"
"CONFIG+=no-bundled-speex"
"DEFINES+=PLUGIN_PATH=${placeholder "out"}/lib/mumble"
] ++ optional (!speechdSupport) "CONFIG+=no-speechd"
++ optional jackSupport "CONFIG+=no-oss CONFIG+=no-alsa CONFIG+=jackaudio"
++ (overrides.configureFlags or [ ]);

preConfigure = ''
qmakeFlags="$qmakeFlags DEFINES+=PLUGIN_PATH=$out/lib/mumble"
patchShebangs scripts
'';

Expand All @@ -66,7 +66,7 @@ let
description = "Low-latency, high quality voice chat software";
homepage = "https://mumble.info";
license = licenses.bsd3;
maintainers = with maintainers; [ petabyteboy ];
maintainers = with maintainers; [ petabyteboy infinisil ];
platforms = platforms.linux;
};
});
Expand Down

0 comments on commit 3c5add9

Please sign in to comment.