3
0
Fork 0
forked from mirrors/nixpkgs

telepathy-farstream: minor update 0.6.1 -> 0.6.2

Also cleanup unneeded dependencies, in particular gst-0.10.
This commit is contained in:
Vladimír Čunát 2015-12-18 10:05:57 +01:00
parent 12b64621fd
commit be6c625410

View file

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