From c3d7de1d491ec8ecb35f9e1d9e1abc2406ea7da9 Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Sun, 12 Feb 2023 12:47:42 +0100 Subject: [PATCH] pkgs/mumble: Use 1.5.517 (rc) The version in nixpkgs opens all fonts (which are quite a lot) at startup, which takes a few seconds in which no interaction is possible. --- pkgs/default.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/pkgs/default.nix b/pkgs/default.nix index e4190bf..dca01e0 100644 --- a/pkgs/default.nix +++ b/pkgs/default.nix @@ -48,6 +48,20 @@ in ]; }); + mumble = prev.mumble.overrideAttrs (o: rec { + version = "1.5.517"; + + src = prev.fetchFromGitHub { + owner = "mumble-voip"; + repo = "mumble"; + rev = "v${version}"; + sha256 = "sha256-NkpX1whtXDX3Q3UPnEO/Fq2LUX2MaJ/NI0oF7HudP+I="; + fetchSubmodules = true; + }; + + patches = [ ]; + }); + vimPlugins = prev.vimPlugins // { # TODO: Remove once (if?) https://github.com/LnL7/vim-nix/pull/28 lands vim-nix = prev.vimPlugins.vim-nix.overrideAttrs (o: {