python-deluge: Fix GUI support.

Actually only pyGtkGlade was missing in propagatedBuildInputs. In addition,
buildInputs is quite redundant in this case, so let's drop it.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
aszlig 2013-03-26 22:13:16 +01:00
parent d5c8419823
commit f1dcd8c11f
No known key found for this signature in database
GPG Key ID: D0EBD0EC8C2DC961

View File

@ -796,14 +796,14 @@ pythonPackages = python.modules // rec {
md5 = "33557678bf2f320de670ddaefaea009d";
};
# TODO: gui, procsettitle
buildInputs = [ pkgs.libtorrentRasterbar twisted Mako chardet pyxdg pkgs.pyopenssl ];
propagatedBuildInputs = [ pkgs.libtorrentRasterbar twisted Mako chardet pyxdg pkgs.pyopenssl ];
propagatedBuildInputs = with pkgs; [
pyGtkGlade libtorrentRasterbar twisted Mako chardet pyxdg pyopenssl
];
meta = {
homepage = http://deluge-torrent.org;
description = "Torrent client";
license = "GPLv3";
license = stdenv.lib.licenses.gpl3Plus;
maintainers = [ stdenv.lib.maintainers.iElectric ];
platforms = stdenv.lib.platforms.all;
};