diff options
| author | Taylan Ulrich B <taylanbayirli@gmail.com> | 2014-11-22 15:57:26 +0100 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2014-11-24 22:01:47 +0100 |
| commit | 2d8dc79c1e7426c12199835cf38037a9c88d9952 (patch) | |
| tree | 5fbc52c889050cbb78aa50cca730cf46c0c1a8f1 /gnu | |
| parent | df66fee79aad663897f27b2aac9933f4338b4f5f (diff) | |
gnu: Add rTorrent.
* gnu/packages/bittorrent.scm (rtorrent): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/bittorrent.scm | 34 |
1 files changed, 33 insertions, 1 deletions
diff --git a/gnu/packages/bittorrent.scm b/gnu/packages/bittorrent.scm index 24b6ccb4d38..722341fa060 100644 --- a/gnu/packages/bittorrent.scm +++ b/gnu/packages/bittorrent.scm | |||
| @@ -32,7 +32,10 @@ | |||
| 32 | #:select (zlib)) | 32 | #:select (zlib)) |
| 33 | #:use-module (gnu packages glib) | 33 | #:use-module (gnu packages glib) |
| 34 | #:use-module (gnu packages gtk) | 34 | #:use-module (gnu packages gtk) |
| 35 | #:use-module (gnu packages check)) | 35 | #:use-module (gnu packages check) |
| 36 | #:use-module (gnu packages ncurses) | ||
| 37 | #:use-module (gnu packages curl) | ||
| 38 | #:use-module (gnu packages cyrus-sasl)) | ||
| 36 | 39 | ||
| 37 | (define-public transmission | 40 | (define-public transmission |
| 38 | (package | 41 | (package |
| @@ -121,3 +124,32 @@ with the BitTorrent client rtorrent. It is written in C++ with emphasis on | |||
| 121 | speed and efficiency.") | 124 | speed and efficiency.") |
| 122 | (home-page "http://libtorrent.rakshasa.no/") | 125 | (home-page "http://libtorrent.rakshasa.no/") |
| 123 | (license l:gpl2+))) | 126 | (license l:gpl2+))) |
| 127 | |||
| 128 | (define-public rtorrent | ||
| 129 | (package | ||
| 130 | (name "rtorrent") | ||
| 131 | (version "0.9.4") | ||
| 132 | (source (origin | ||
| 133 | (method url-fetch) | ||
| 134 | (uri (string-append | ||
| 135 | "http://libtorrent.rakshasa.no/downloads/rtorrent-" | ||
| 136 | version ".tar.gz")) | ||
| 137 | (sha256 | ||
| 138 | (base32 | ||
| 139 | "113yrrac75vqi4g8r6bgs0ggjllj9bkg9shv08vqzdhkwqg2q2mw")))) | ||
| 140 | (build-system gnu-build-system) | ||
| 141 | (inputs `(("libtorrent" ,libtorrent) | ||
| 142 | ("ncurses" ,ncurses) | ||
| 143 | ("curl" ,curl) | ||
| 144 | ("cyrus-sasl" ,cyrus-sasl) | ||
| 145 | ("openssl" ,openssl) | ||
| 146 | ("zlib" ,zlib))) | ||
| 147 | (native-inputs `(("pkg-config" ,pkg-config) | ||
| 148 | ("cppunit" ,cppunit))) | ||
| 149 | (synopsis "BitTorrent client with ncurses interface") | ||
| 150 | (description | ||
| 151 | "rTorrent is a BitTorrent client with an ncurses interface. It supports | ||
| 152 | full encryption, DHT, PEX, and Magnet Links. It can also be controlled via | ||
| 153 | XML-RPC over SCGI.") | ||
| 154 | (home-page "http://libtorrent.rakshasa.no/") | ||
| 155 | (license l:gpl2+))) | ||
