diff options
Diffstat (limited to 'gnu/packages/bittorrent.scm')
-rw-r--r-- | gnu/packages/bittorrent.scm | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/gnu/packages/bittorrent.scm b/gnu/packages/bittorrent.scm index 264e9e9724c..d53f717f0d2 100644 --- a/gnu/packages/bittorrent.scm +++ b/gnu/packages/bittorrent.scm @@ -574,7 +574,7 @@ features.") #~(cons "-DGUI=OFF" #$configure-flags)))) (inputs (modify-inputs (package-inputs base) - (delete "qtsvg-5")))))) + (delete "qtsvg")))))) (define-public qbittorrent-nox (deprecated-package "qbittorrent-nox" qbittorrent-no-x)) @@ -583,7 +583,7 @@ features.") (package (inherit qbittorrent) (name "qbittorrent-enhanced") - (version "4.6.1.10") + (version "4.6.3.10") (source (origin (method git-fetch) @@ -593,7 +593,7 @@ features.") (file-name (git-file-name name version)) (sha256 (base32 - "101a9n2vk9d6b4vc3schkmpc56l0i0i60fcjh8hwadc6amc2ymvy")))) + "09b8237h0gn6y3s0a7qg247hsdra5f5kg6xhirnhhfvjd8k6qviv")))) (home-page "https://github.com/c0re100/qBittorrent-Enhanced-Edition") (description "qBittorrent Enhanced is a bittorrent client based on qBittorrent with @@ -607,12 +607,15 @@ the following features: @item Peer whitelist/blacklist @end itemize"))) -(define-public qbittorrent-enhanced-nox +(define-public qbittorrent-enhanced-no-x (package (inherit qbittorrent-enhanced) - (name "qbittorrent-enhanced-nox") - (arguments (package-arguments qbittorrent-nox)) - (inputs (package-inputs qbittorrent-nox)))) + (name "qbittorrent-enhanced-no-x") + (arguments (package-arguments qbittorrent-no-x)) + (inputs (package-inputs qbittorrent-no-x)))) + +(define-public qbittorrent-enhanced-nox + (deprecated-package "qbittorrent-enhanced-nox" qbittorrent-enhanced-no-x)) (define-public deluge (package |