summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorAndreas Rammhold <andreas@rammhold.de>2018-01-04 00:40:18 +0100
committerAndreas Rammhold <andreas@rammhold.de>2018-01-04 00:40:18 +0100
commit97317562057cd5c94f11567c6c25e8e829a2453b (patch)
tree734f7f49c59f79ecbdbfc26ef26b2ffbfe669895 /pkgs
parent5b72e1be768b78c40f5c222016edd00aa3c35ec2 (diff)
downloadnixlib-97317562057cd5c94f11567c6c25e8e829a2453b.tar
nixlib-97317562057cd5c94f11567c6c25e8e829a2453b.tar.gz
nixlib-97317562057cd5c94f11567c6c25e8e829a2453b.tar.bz2
nixlib-97317562057cd5c94f11567c6c25e8e829a2453b.tar.lz
nixlib-97317562057cd5c94f11567c6c25e8e829a2453b.tar.xz
nixlib-97317562057cd5c94f11567c6c25e8e829a2453b.tar.zst
nixlib-97317562057cd5c94f11567c6c25e8e829a2453b.zip
deluge: use libtorrentRasterbar instead of libtorrentRasterbar_1_0
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/networking/p2p/deluge/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/networking/p2p/deluge/default.nix b/pkgs/applications/networking/p2p/deluge/default.nix
index 7f8594b8bbb1..c6e5d0f3cb31 100644
--- a/pkgs/applications/networking/p2p/deluge/default.nix
+++ b/pkgs/applications/networking/p2p/deluge/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, intltool, libtorrentRasterbar_1_0, pythonPackages }:
+{ stdenv, fetchurl, intltool, libtorrentRasterbar, pythonPackages }:
 pythonPackages.buildPythonPackage rec {
   name = "deluge-${version}";
   version = "1.3.15";
@@ -9,7 +9,7 @@ pythonPackages.buildPythonPackage rec {
   };
 
   propagatedBuildInputs = with pythonPackages; [
-    pyGtkGlade libtorrentRasterbar_1_0 twisted Mako chardet pyxdg pyopenssl service-identity
+    pyGtkGlade libtorrentRasterbar twisted Mako chardet pyxdg pyopenssl service-identity
   ];
 
   nativeBuildInputs = [ intltool ];