summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2015-12-18 10:05:57 +0100
committerVladimír Čunát <vcunat@gmail.com>2015-12-18 10:31:57 +0100
commitbe6c6254107b4cac011a54946ecf39161c935db2 (patch)
treefa0813572255340a9435e52623f4ea1521c76cb2 /pkgs/development/libraries
parent12b64621fdef0e777e6cfe5b87f6840d63785cf9 (diff)
downloadnixlib-be6c6254107b4cac011a54946ecf39161c935db2.tar
nixlib-be6c6254107b4cac011a54946ecf39161c935db2.tar.gz
nixlib-be6c6254107b4cac011a54946ecf39161c935db2.tar.bz2
nixlib-be6c6254107b4cac011a54946ecf39161c935db2.tar.lz
nixlib-be6c6254107b4cac011a54946ecf39161c935db2.tar.xz
nixlib-be6c6254107b4cac011a54946ecf39161c935db2.tar.zst
nixlib-be6c6254107b4cac011a54946ecf39161c935db2.zip
telepathy-farstream: minor update 0.6.1 -> 0.6.2
Also cleanup unneeded dependencies, in particular gst-0.10.
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/telepathy/farstream/default.nix13
1 files 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 ];
 }