fe1115caf4
svn path=/nixpkgs/trunk/; revision=33092
17 lines
579 B
Nix
17 lines
579 B
Nix
{ stdenv, fetchurl, telepathy_glib, farsight2, gst_plugins_base, dbus_glib
|
|
, pkgconfig, libxslt, python, gstreamer, gst_python, pygobject }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "telepathy-farsight-0.0.19";
|
|
|
|
src = fetchurl {
|
|
url = "http://telepathy.freedesktop.org/releases/telepathy-farsight/${name}.tar.gz";
|
|
sha256 = "0sajy2w109zc6assqby3cfqr7cckwhfsngkhjczz67grb6rbi29c";
|
|
};
|
|
|
|
buildInputs = [ gst_plugins_base gst_python pygobject ];
|
|
|
|
propagatedBuildInputs = [ dbus_glib farsight2 telepathy_glib gstreamer ];
|
|
buildNativeInputs = [ pkgconfig python libxslt];
|
|
}
|