Skip to content

Commit 50a753f

Browse files
committed
mumble: darwin: Fix missing version information in finder
Reported upstream at mumble-voip/mumble#6741
1 parent b3277d1 commit 50a753f

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

pkgs/applications/networking/mumble/default.nix

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
lib,
33
stdenv,
44
fetchFromGitHub,
5+
fetchpatch,
56
pkg-config,
67
qt5,
78
cmake,
@@ -150,6 +151,12 @@ let
150151
patches = [
151152
./disable-overlay-build.patch
152153
./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+
})
153160
];
154161

155162
postInstall = lib.optionalString stdenv.hostPlatform.isDarwin ''

0 commit comments

Comments
 (0)