farstream: 0.2.8 -> 0.2.9, set broken=false

It's a dependency of `pidgin`. farstream-0.2.9 builds and runs fine
against latest gstreamer.

authored by Sergei Trofimovich and committed by Jonathan Ringer f8a33c33 7da59c20

+4 -9
+4 -9
pkgs/development/libraries/farstream/default.nix
··· 11 , gst-plugins-good 12 , gst-plugins-bad 13 , gst-libav 14 }: 15 16 stdenv.mkDerivation rec { 17 pname = "farstream"; 18 - version = "0.2.8"; 19 20 outputs = [ "out" "dev" ]; 21 22 src = fetchurl { 23 url = "https://www.freedesktop.org/software/farstream/releases/farstream/${pname}-${version}.tar.gz"; 24 - sha256 = "0249ncd20x5mf884fd8bw75c3118b9fdml837v4fib349xmrqfrb"; 25 }; 26 27 patches = [ 28 - # Python has not been used for ages 29 - (fetchpatch { 30 - url = "https://gitlab.freedesktop.org/farstream/farstream/commit/73891c28fa27d5e65a71762e826f13747d743588.patch"; 31 - sha256 = "19pw1m8xhxyf5yhl6k898w240ra2k0m28gfv858x70c4wl786lrn"; 32 - }) 33 # Fix build with newer gnumake. 34 (fetchpatch { 35 url = "https://gitlab.freedesktop.org/farstream/farstream/-/commit/54987d44.diff"; ··· 47 pkg-config 48 autoreconfHook 49 gobject-introspection 50 ]; 51 52 propagatedBuildInputs = [ ··· 62 description = "Audio/Video Communications Framework formely known as farsight"; 63 platforms = platforms.linux; 64 license = licenses.lgpl21; 65 - # no longer compatible with gstreamer 1.20 66 - broken = true; 67 }; 68 }
··· 11 , gst-plugins-good 12 , gst-plugins-bad 13 , gst-libav 14 + , python3 15 }: 16 17 stdenv.mkDerivation rec { 18 pname = "farstream"; 19 + version = "0.2.9"; 20 21 outputs = [ "out" "dev" ]; 22 23 src = fetchurl { 24 url = "https://www.freedesktop.org/software/farstream/releases/farstream/${pname}-${version}.tar.gz"; 25 + sha256 = "0yzlh9jf47a3ir40447s7hlwp98f9yr8z4gcm0vjwz6g6cj12zfb"; 26 }; 27 28 patches = [ 29 # Fix build with newer gnumake. 30 (fetchpatch { 31 url = "https://gitlab.freedesktop.org/farstream/farstream/-/commit/54987d44.diff"; ··· 43 pkg-config 44 autoreconfHook 45 gobject-introspection 46 + python3 47 ]; 48 49 propagatedBuildInputs = [ ··· 59 description = "Audio/Video Communications Framework formely known as farsight"; 60 platforms = platforms.linux; 61 license = licenses.lgpl21; 62 }; 63 }