summary refs log tree commit diff
path: root/pkgs/applications/networking/p2p/deluge/2/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/networking/p2p/deluge/2/default.nix')
-rw-r--r--pkgs/applications/networking/p2p/deluge/2/default.nix44
1 files changed, 0 insertions, 44 deletions
diff --git a/pkgs/applications/networking/p2p/deluge/2/default.nix b/pkgs/applications/networking/p2p/deluge/2/default.nix
deleted file mode 100644
index 2e9f08ce98a..00000000000
--- a/pkgs/applications/networking/p2p/deluge/2/default.nix
+++ /dev/null
@@ -1,44 +0,0 @@
-{ stdenv, fetchurl, intltool, libtorrentRasterbar, pythonPackages
-, gtk3, glib, gobject-introspection, librsvg, wrapGAppsHook }:
-
-pythonPackages.buildPythonPackage rec {
-  pname = "deluge";
-  version = "2.0.3";
-
-  src = fetchurl {
-    url = "http://download.deluge-torrent.org/source/2.0/${pname}-${version}.tar.xz";
-    sha256 = "14d8kn2pvr1qv8mwqrxmj85jycr73vwfqz12hzag0ararbkfhyky";
-  };
-
-  propagatedBuildInputs = with pythonPackages; [
-    twisted Mako chardet pyxdg pyopenssl service-identity
-    libtorrentRasterbar.dev libtorrentRasterbar.python setuptools
-    setproctitle pillow rencode six zope_interface
-    dbus-python pygobject3 pycairo
-    gtk3 gobject-introspection librsvg
-  ];
-
-  nativeBuildInputs = [ intltool wrapGAppsHook glib ];
-
-  checkInputs = with pythonPackages; [
-    pytest /* pytest-twisted */ pytestcov mock
-    mccabe pylint
-  ];
-
-  doCheck = false; # until pytest-twisted is packaged
-
-  postInstall = ''
-     mkdir -p $out/share/applications
-     cp -R deluge/ui/data/pixmaps $out/share/
-     cp -R deluge/ui/data/icons $out/share/
-     cp deluge/ui/data/share/applications/deluge.desktop $out/share/applications
-  '';
-
-  meta = with stdenv.lib; {
-    homepage = "https://deluge-torrent.org";
-    description = "Torrent client";
-    license = licenses.gpl3Plus;
-    maintainers = with maintainers; [ domenkozar ebzzry ];
-    platforms = platforms.all;
-  };
-}