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