From be6c6254107b4cac011a54946ecf39161c935db2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Fri, 18 Dec 2015 10:05:57 +0100 Subject: [PATCH] telepathy-farstream: minor update 0.6.1 -> 0.6.2 Also cleanup unneeded dependencies, in particular gst-0.10. --- .../libraries/telepathy/farstream/default.nix | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/pkgs/development/libraries/telepathy/farstream/default.nix b/pkgs/development/libraries/telepathy/farstream/default.nix index a5185689ee0a..88eecd0703cc 100644 --- a/pkgs/development/libraries/telepathy/farstream/default.nix +++ b/pkgs/development/libraries/telepathy/farstream/default.nix @@ -1,17 +1,14 @@ -{ stdenv, fetchurl, telepathy_glib, farstream, gst_plugins_base, dbus_glib -, pkgconfig, libxslt, python, gstreamer, gst_python, pygobject }: +{ stdenv, fetchurl, pkgconfig, telepathy_glib, farstream, dbus_glib }: stdenv.mkDerivation rec { - name = "${pname}-0.6.1"; + name = "${pname}-0.6.2"; pname = "telepathy-farstream"; src = fetchurl { url = "http://telepathy.freedesktop.org/releases/${pname}/${name}.tar.gz"; - sha256 = "0ia8nldxxan1cvplr62aicjhfcrm27s3qyk0x46c8q0fmqvnzlm3"; + sha256 = "02ky12bb92prr5f6xmvmfq4yz2lj33li6nj4829a98hk5pr9k83g"; }; - buildInputs = [ gst_plugins_base gst_python pygobject ]; - - propagatedBuildInputs = [ dbus_glib telepathy_glib gstreamer farstream ]; - nativeBuildInputs = [ pkgconfig python libxslt]; + propagatedBuildInputs = [ dbus_glib telepathy_glib farstream ]; + nativeBuildInputs = [ pkgconfig ]; }