mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 12:28:51 +00:00
5da2c77fbd
Hopefully fixes the tested job Signed-off-by: Shea Levy <shea@shealevy.com>
18 lines
591 B
Nix
18 lines
591 B
Nix
{ stdenv, fetchurl, telepathy_glib, farstream, gst_plugins_base, dbus_glib
|
|
, pkgconfig, libxslt, python, gstreamer, gst_python, pygobject }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "${pname}-0.6.0";
|
|
pname = "telepathy-farstream";
|
|
|
|
src = fetchurl {
|
|
url = "http://telepathy.freedesktop.org/releases/${pname}/${name}.tar.gz";
|
|
sha256 = "04v414jij2ba71krk7vh4avsz07sfp5w38dmvjwig5isdygy0905";
|
|
};
|
|
|
|
buildInputs = [ gst_plugins_base gst_python pygobject ];
|
|
|
|
propagatedBuildInputs = [ dbus_glib telepathy_glib gstreamer farstream ];
|
|
nativeBuildInputs = [ pkgconfig python libxslt];
|
|
}
|