about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorTimo Kaufmann <timokau@zoho.com>2020-10-07 10:02:37 +0200
committerGitHub <noreply@github.com>2020-10-07 10:02:37 +0200
commitb3af4a43f2419c55b0e0155d87d66e274cf942b3 (patch)
tree795831e0e2246fe2dacb72fd5c1da05df2f07754 /pkgs
parentb18cf1b35a2b2e67645e2518e7bd67e713d1eb97 (diff)
parent98e5369bafacf919982813d86e5dc99095d5d3d0 (diff)
Merge pull request #99899 from ardumont/bump-gmrender-resurrect
gmrender-resurrect: Make build against libupnp 1.14 ok
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/networking/gmrender-resurrect/default.nix10
1 files changed, 9 insertions, 1 deletions
diff --git a/pkgs/tools/networking/gmrender-resurrect/default.nix b/pkgs/tools/networking/gmrender-resurrect/default.nix
index fa364dc4eab69..8a8ed25a5a62e 100644
--- a/pkgs/tools/networking/gmrender-resurrect/default.nix
+++ b/pkgs/tools/networking/gmrender-resurrect/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, makeWrapper, gstreamer
+{ stdenv, fetchFromGitHub, fetchpatch, autoreconfHook, pkgconfig, makeWrapper, gstreamer
 , gst-plugins-base, gst-plugins-good, gst-plugins-bad, gst-plugins-ugly, gst-libav, libupnp }:
 
 let
@@ -19,6 +19,14 @@ in
       sha256 = "14i5jrry6qiap5l2x2jqj7arymllajl3wgnk29ccvr8d45zp4jn1";
     };
 
+    patches = [
+      (fetchpatch {
+        url = "https://github.com/hzeller/gmrender-resurrect/commit/dc8c4d4dc234311b3099e7f1efadf5d9733c81e9.patch";
+        sha256 = "0fqi58viaq9jg5h5j1725qrach4c3wmfmh0q43q4r8az2pn7dszw";
+        name = "libupnp.patch";
+      })
+    ];
+
     buildInputs = [ gstreamer libupnp ];
     nativeBuildInputs = [ autoreconfHook pkgconfig makeWrapper ];