about summary refs log tree commit diff
path: root/pkgs/applications/networking/p2p/qbittorrent
diff options
context:
space:
mode:
authorMilan Pässler <mil@nyantec.com>2020-12-20 14:35:14 +0100
committerMilan <me@pbb.lc>2020-12-20 20:51:28 +0100
commita333985d59dd190f7b3dd96c862962fc8a09c5fd (patch)
tree869a3257cace5f9370abb109fb786d541f407d6b /pkgs/applications/networking/p2p/qbittorrent
parent0dcf65711c829fc3f9816680e26ef8b2dc06b9fc (diff)
libtorrentRasterbar: rename to libtorrent-rasterbar
This is done to match upstream naming:
https://github.com/NixOS/nixpkgs/pull/107194#issuecomment-748501379
Diffstat (limited to 'pkgs/applications/networking/p2p/qbittorrent')
-rw-r--r--pkgs/applications/networking/p2p/qbittorrent/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/networking/p2p/qbittorrent/default.nix b/pkgs/applications/networking/p2p/qbittorrent/default.nix
index ac67172939282..2e69ad23e14c5 100644
--- a/pkgs/applications/networking/p2p/qbittorrent/default.nix
+++ b/pkgs/applications/networking/p2p/qbittorrent/default.nix
@@ -1,5 +1,5 @@
 { mkDerivation, lib, fetchFromGitHub, makeWrapper, pkgconfig
-, boost, libtorrentRasterbar, qtbase, qttools, qtsvg
+, boost, libtorrent-rasterbar, qtbase, qttools, qtsvg
 , debugSupport ? false
 , guiSupport ? true, dbus ? null # GUI (disable to run headless)
 , webuiSupport ? true # WebUI
@@ -24,7 +24,7 @@ mkDerivation rec {
   # NOTE: 2018-05-31: CMake is working but it is not officially supported
   nativeBuildInputs = [ makeWrapper pkgconfig ];
 
-  buildInputs = [ boost libtorrentRasterbar qtbase qttools qtsvg ]
+  buildInputs = [ boost libtorrent-rasterbar qtbase qttools qtsvg ]
     ++ optional guiSupport dbus # D(esktop)-Bus depends on GUI support
     ++ optional trackerSearch python3;