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.
This commit is contained in:
parent
f4efa9b1fc
commit
c3d7de1d49
|
@ -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 // {
|
vimPlugins = prev.vimPlugins // {
|
||||||
# TODO: Remove once (if?) https://github.com/LnL7/vim-nix/pull/28 lands
|
# TODO: Remove once (if?) https://github.com/LnL7/vim-nix/pull/28 lands
|
||||||
vim-nix = prev.vimPlugins.vim-nix.overrideAttrs (o: {
|
vim-nix = prev.vimPlugins.vim-nix.overrideAttrs (o: {
|
||||||
|
|
Loading…
Reference in a new issue