From a09acf2903eae8922fcef5e43612303273914e8b Mon Sep 17 00:00:00 2001 From: huantian Date: Wed, 16 Aug 2023 20:14:35 -0700 Subject: [PATCH] discord-screenaudio: init at 1.9.2 --- .../discord-screenaudio/default.nix | 56 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 58 insertions(+) create mode 100644 pkgs/applications/networking/instant-messengers/discord-screenaudio/default.nix diff --git a/pkgs/applications/networking/instant-messengers/discord-screenaudio/default.nix b/pkgs/applications/networking/instant-messengers/discord-screenaudio/default.nix new file mode 100644 index 000000000000..44ef7cae84c7 --- /dev/null +++ b/pkgs/applications/networking/instant-messengers/discord-screenaudio/default.nix @@ -0,0 +1,56 @@ +{ lib +, stdenv +, fetchFromGitHub +, wrapQtAppsHook +, cmake +, pkg-config +, qtbase +, qtwebengine +, qtwayland +, pipewire +, nix-update-script +}: + +stdenv.mkDerivation rec { + pname = "discord-screenaudio"; + version = "1.9.2"; + + src = fetchFromGitHub { + owner = "maltejur"; + repo = "discord-screenaudio"; + rev = "v${version}"; + hash = "sha256-it7JSmiDz3k1j+qEZrrNhyAuoixiQuiEbXac7lbJmko="; + fetchSubmodules = true; + }; + + nativeBuildInputs = [ + wrapQtAppsHook + cmake + pkg-config + ]; + + buildInputs = [ + qtbase + qtwebengine + qtwayland + pipewire + ]; + + preConfigure = '' + # version.cmake either uses git tags or a version.txt file to get app version. + # Since cmake can't access git tags, write the version to a version.txt ourselves. + echo "${version}" > version.txt + ''; + + passthru.updateScript = nix-update-script { }; + + meta = { + description = "A custom discord client that supports streaming with audio on Linux"; + homepage = "https://github.com/maltejur/discord-screenaudio"; + downloadPage = "https://github.com/maltejur/discord-screenaudio/releases"; + changelog = "https://github.com/maltejur/discord-screenaudio/releases/tag/v${version}"; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ huantian ]; + platforms = lib.platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f6b5a8bf8e3f..156a157595d2 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -41406,6 +41406,8 @@ with pkgs; }; + discord-screenaudio = qt6.callPackage ../applications/networking/instant-messengers/discord-screenaudio { }; + discordo = callPackage ../applications/networking/discordo/default.nix { }; golden-cheetah = libsForQt5.callPackage ../applications/misc/golden-cheetah { };