diff options
Diffstat (limited to 'mumble-git.nix')
-rw-r--r-- | mumble-git.nix | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/mumble-git.nix b/mumble-git.nix new file mode 100644 index 0000000..e03e57e --- /dev/null +++ b/mumble-git.nix @@ -0,0 +1,40 @@ +{ inputs }: +self: super: { + mumble-git = + with super; + with gsettings-desktop-schemas; + mumble.overrideAttrs (oldAttrs: rec { + version = "git"; + src = fetchGit { + url = "https://github.com/mumble-voip/mumble"; + ref = "master"; + rev = "24d3ec646a12230e8da3e7d3d0e50de429c9a039"; + submodules = true; + }; + nativeBuildInputs = with qt6Packages; [ + cmake + pkg-config + python3 + wrapQtAppsHook + qttools + wrapGAppsHook + ]; + buildInputs = with qt6Packages; [ + avahi-compat + alsa-lib + boost + poco + protobuf + qtsvg + libsndfile + libopus + speexdsp + gsettings-desktop-schemas + utf8proc + microsoft-gsl + nlohmann_json + ]; + patches = [ ]; + # nativeBuildInputs = oldAttrs.nativeBuildInputs ++ [ python3 pkg-config python3Packages.setuptools]; + }); +} |