We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3277d1 commit 50a753fCopy full SHA for 50a753f
pkgs/applications/networking/mumble/default.nix
@@ -2,6 +2,7 @@
2
lib,
3
stdenv,
4
fetchFromGitHub,
5
+ fetchpatch,
6
pkg-config,
7
qt5,
8
cmake,
@@ -150,6 +151,12 @@ let
150
151
patches = [
152
./disable-overlay-build.patch
153
./fix-plugin-copy.patch
154
+ # Can be removed before the next update of Mumble, as that fix was upstreamed
155
+ # fix version display in MacOS Finder
156
+ (fetchpatch {
157
+ url = "https://github.com/mumble-voip/mumble/commit/fbd21bd422367bed19f801bf278562f567cbb8b7.patch";
158
+ sha256 = "sha256-qFhC2j/cOWzAhs+KTccDIdcgFqfr4y4VLjHiK458Ucs=";
159
+ })
160
];
161
162
postInstall = lib.optionalString stdenv.hostPlatform.isDarwin ''
0 commit comments