gmrender-resurrect: Make build against libupnp 1.14 ok

Current PR opened but not merged upstream [1]

[1] https://github.com/hzeller/gmrender-resurrect/pull/214
This commit is contained in:
Antoine R. Dumont (@ardumont) 2020-10-06 22:35:26 +02:00
parent 4e1b68b5aa
commit 98e5369baf
No known key found for this signature in database
GPG Key ID: 52E2E9840D10C3B8
1 changed files with 9 additions and 1 deletions

View File

@ -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 ];