summary refs log tree commit diff
path: root/modules/packages
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2024-08-08 03:50:02 +0200
committerRory& <root@rory.gay>2024-08-08 03:51:45 +0200
commitff65c8e951092d4d7caed1c4d02c9e141df7799b (patch)
treef8bd40da8fd80021a7452723a32cddaec8d45de6 /modules/packages
parentServer config cleanup (diff)
downloadRory-Open-Architecture-ff65c8e951092d4d7caed1c4d02c9e141df7799b.tar.xz
Imports cleanup
Diffstat (limited to 'modules/packages')
-rw-r--r--modules/packages/discord-screenaudio.nix58
1 files changed, 0 insertions, 58 deletions
diff --git a/modules/packages/discord-screenaudio.nix b/modules/packages/discord-screenaudio.nix
deleted file mode 100644

index 2829381..0000000 --- a/modules/packages/discord-screenaudio.nix +++ /dev/null
@@ -1,58 +0,0 @@ -{ - lib, - stdenv, - fetchFromGitHub, - cmake, - wrapQtAppsHook, - pkg-config, - qtbase, - qtwebengine, - knotifications, - kxmlgui, - kglobalaccel, - pipewire, - xdg-desktop-portal, -}: - -stdenv.mkDerivation rec { - pname = "discord-screenaudio"; - version = "1.9.0"; - - src = fetchFromGitHub { - owner = "maltejur"; - repo = pname; - rev = "v${version}"; - sha256 = "sha256-PPP/+7x0dcQHowB7hUZu85LK/G+ohrPeRB0vv6e3PBg="; - fetchSubmodules = true; - }; - - cmakeFlags = [ - "-DPipeWire_INCLUDE_DIRS=${pipewire.dev}/include/pipewire-0.3" - "-DSpa_INCLUDE_DIRS=${pipewire.dev}/include/spa-0.2" - ]; - - nativeBuildInputs = [ - cmake - pkg-config - wrapQtAppsHook - ]; - - buildInputs = [ - qtbase - qtwebengine - knotifications - kxmlgui - kglobalaccel - pipewire - pipewire.pulse - xdg-desktop-portal - ]; - - meta = with lib; { - homepage = "https://github.com/maltejur/discord-screenaudio"; - description = "A custom discord client that supports streaming with audio on Linux"; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = with maintainers; [ michaelBelsanti ]; - }; -}