about summary refs log tree commit diff
path: root/pkgs/applications/audio/radiotray-ng
diff options
context:
space:
mode:
authorannalee <150648636+a-n-n-a-l-e-e@users.noreply.github.com>2024-01-13 09:56:48 +0000
committerannalee <150648636+a-n-n-a-l-e-e@users.noreply.github.com>2024-01-13 09:56:48 +0000
commit9771113f7c390fa56a5437b318417b27290c13d8 (patch)
treef8e92dfe7620d52760dd7cec2911ba43b6c05cc4 /pkgs/applications/audio/radiotray-ng
parent0032a648eca714487311daf658e97e2548f54adf (diff)
radiotray-ng: fix gcc13 errors with upstream patch
Diffstat (limited to 'pkgs/applications/audio/radiotray-ng')
-rw-r--r--pkgs/applications/audio/radiotray-ng/default.nix11
1 files changed, 9 insertions, 2 deletions
diff --git a/pkgs/applications/audio/radiotray-ng/default.nix b/pkgs/applications/audio/radiotray-ng/default.nix
index 63e2bd7f2dccd..ce3f571623663 100644
--- a/pkgs/applications/audio/radiotray-ng/default.nix
+++ b/pkgs/applications/audio/radiotray-ng/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchFromGitHub
+{ lib, stdenv, fetchFromGitHub, fetchpatch
 , cmake, pkg-config
 # Transport
 , curl
@@ -65,7 +65,14 @@ stdenv.mkDerivation rec {
   ] ++ gstInputs
     ++ pythonInputs;
 
-  patches = [ ./no-dl-googletest.patch ];
+  patches = [
+    ./no-dl-googletest.patch
+    (fetchpatch {
+      name = "gcc13-fixes.patch";
+      url = "https://github.com/ebruck/radiotray-ng/commit/7a99bfa784f77be8f160961d25ab63dc2d5ccde0.patch";
+      hash = "sha256-7x3v0dp9WPgd/vsnxezgXIZGsBrIHkTwIiu+FMlLmyA=";
+    })
+  ];
 
   postPatch = ''
     for x in package/CMakeLists.txt include/radiotray-ng/common.hpp data/*.desktop; do