diff options
| author | Mark H Weaver | 2018-04-11 17:19:06 -0400 |
|---|---|---|
| committer | Mark H Weaver | 2018-04-11 17:19:06 -0400 |
| commit | 3c0316169b47a1c035390aae8a211dcbedc8f5f3 (patch) | |
| tree | 3c89536e1ef0c1db4339175bce7ff64d2e42f591 /gnu/packages/bittorrent.scm | |
| parent | ecfe88b76496c62fad4f6b6c593318378cebba22 (diff) | |
| parent | 87a841b2d4b7f8bfd661ba2d2cd2bbce7f490fbd (diff) | |
Merge branch 'master' into core-updates
Diffstat (limited to 'gnu/packages/bittorrent.scm')
| -rw-r--r-- | gnu/packages/bittorrent.scm | 46 |
1 files changed, 45 insertions, 1 deletions
diff --git a/gnu/packages/bittorrent.scm b/gnu/packages/bittorrent.scm index dc051e262..c6b9d74f3 100644 --- a/gnu/packages/bittorrent.scm +++ b/gnu/packages/bittorrent.scm @@ -7,6 +7,7 @@ ;;; Copyright © 2016 Tomáš Čech <sleep_walker@gnu.org> ;;; Copyright © 2016, 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2017 Jelle Licht <jlicht@fsfe.org> +;;; Copyright © 2018 Fis Trivial <ybbs.daans@hotmail.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -53,6 +54,7 @@ #:use-module (gnu packages ncurses) #:use-module (gnu packages pkg-config) #:use-module (gnu packages python) + #:use-module (gnu packages qt) #:use-module (gnu packages ssh) #:use-module (gnu packages tls) #:use-module (gnu packages xml)) @@ -391,7 +393,8 @@ and will take advantage of multiple processor cores where possible.") (assoc-ref %build-inputs "boost") "/lib") "--enable-python-binding" - "--enable-tests") + "--enable-tests" + "CXXFLAGS=-std=c++11") ; Use std::chrono instead of boost #:make-flags (list (string-append "LDFLAGS=-Wl,-rpath=" (assoc-ref %outputs "out") "/lib")))) @@ -407,4 +410,45 @@ focusing on efficiency and scalability. It runs on embedded devices as well as desktops.") (license l:bsd-2))) +(define-public qbittorrent + (package + (name "qbittorrent") + (version "4.0.4") + (source (origin + (method url-fetch) + (uri (string-append + "https://github.com/qbittorrent/qBittorrent/archive/release-" + version ".tar.gz")) + (file-name (string-append name "-release-" version ".tar.gz")) + (sha256 + (base32 + "145r4lv7rqdhrm5znn3ndxsfdf579n46zvj7c53c422am8ir5xhp")))) + (build-system gnu-build-system) + (arguments + `(#:configure-flags + (list (string-append "--with-boost-libdir=" + (assoc-ref %build-inputs "boost") + "/lib") + "--enable-debug" + "QMAKE_LRELEASE=lrelease"))) + (native-inputs + `(("pkg-config" ,pkg-config) + ("qttools" ,qttools))) + (inputs + `(("boost" ,boost) + ("libtorrent-rasterbar" ,libtorrent-rasterbar) + ("openssl" ,openssl) + ("python" ,python) + ("qtbase" ,qtbase) + ("qtsvg" ,qtsvg) + ("zlib" ,zlib))) + (home-page "https://www.qbittorrent.org/") + (synopsis "Graphical BitTorrent client") + (description + "qBittorrent is a BitTorrent client programmed in C++/Qt that uses +libtorrent (sometimes called libtorrent-rasterbar) by Arvid Norberg. +It aims to be a good alternative to all other BitTorrent clients out there. +qBittorrent is fast, stable and provides unicode support as well as many +features.") + (license l:gpl2+))) |