summary refs log tree commit diff
path: root/pkgs/applications/networking/p2p/deluge/default.nix
blob: cafba65c788b9bbc482a8b01191d41d0a2e30f82 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{ stdenv, fetchurl, fetchpatch, intltool, libtorrentRasterbar, pythonPackages }:

pythonPackages.buildPythonPackage rec {
  pname = "deluge";
  version = "1.3.15";

  src = fetchurl {
    url = "http://download.deluge-torrent.org/source/${pname}-${version}.tar.bz2";
    sha256 = "1467b9hmgw59gf398mhbf40ggaka948yz3afh6022v753c9j7y6w";
  };

  patches = [
    # Fix preferences when built against libtorrent >=0.16
    (fetchpatch {
      url = "https://git.deluge-torrent.org/deluge/patch/?id=38d7b7cdfde3c50d6263602ffb03af92fcbfa52e";
      sha256 = "0la3i0lkj6yv4725h4kbd07mhfwcb34w7prjl9gxg12q7px6c31d";
    })
  ];

  propagatedBuildInputs = with pythonPackages; [
    pyGtkGlade twisted Mako chardet pyxdg pyopenssl service-identity
    libtorrentRasterbar.dev libtorrentRasterbar.python setuptools
  ];

  nativeBuildInputs = [ intltool ];

  postInstall = ''
     mkdir -p $out/share/applications
     cp -R deluge/data/pixmaps $out/share/
     cp -R deluge/data/icons $out/share/
     cp deluge/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;
  };
}