summary refs log tree commit diff
path: root/pkgs/applications/networking
diff options
context:
space:
mode:
authordevhell <^@regexmail.net>2015-01-12 20:31:26 +0000
committerCray Elliott <MP2E@archlinux.us>2015-01-13 00:38:06 -0800
commit29b3353a9e129aa94258132f9f77dc97ad50bf70 (patch)
treeb788d9b8b677e1afca0792f317db4ed444b4cfac /pkgs/applications/networking
parent13b3fb2acab3b9c2c843751c5443d24bae49c9f6 (diff)
downloadnixpkgs-29b3353a9e129aa94258132f9f77dc97ad50bf70.tar
nixpkgs-29b3353a9e129aa94258132f9f77dc97ad50bf70.tar.gz
nixpkgs-29b3353a9e129aa94258132f9f77dc97ad50bf70.tar.bz2
nixpkgs-29b3353a9e129aa94258132f9f77dc97ad50bf70.tar.lz
nixpkgs-29b3353a9e129aa94258132f9f77dc97ad50bf70.tar.xz
nixpkgs-29b3353a9e129aa94258132f9f77dc97ad50bf70.tar.zst
nixpkgs-29b3353a9e129aa94258132f9f77dc97ad50bf70.zip
enhanced-ctorrent: Add package
This adds enhanced-ctorrent (ctorrent) which is a CLI-based bittorrent
client written in C++. It is very fast for those times when one wants to
simply add a torrent quick'n'dirty-style.
Diffstat (limited to 'pkgs/applications/networking')
-rw-r--r--pkgs/applications/networking/enhanced-ctorrent/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/applications/networking/enhanced-ctorrent/default.nix b/pkgs/applications/networking/enhanced-ctorrent/default.nix
new file mode 100644
index 00000000000..fedbfeb957c
--- /dev/null
+++ b/pkgs/applications/networking/enhanced-ctorrent/default.nix
@@ -0,0 +1,22 @@
+{ stdenv, fetchurl }:
+
+stdenv.mkDerivation rec {
+  version = "dnh3.3.2";
+  name = "enhanced-ctorrent";
+  src = fetchurl {
+    url = "http://www.rahul.net/dholmes/ctorrent/ctorrent-dnh3.3.2.tar.gz";
+    sha256 = "0qs8waqwllk56i3yy3zhncy7nsnhmf09a494p5siz4vm2k4ncwy8";
+  };
+
+  meta = {
+    description = "BitTorrent client written in C++";
+    longDescription = ''
+      CTorrent, a BitTorrent client implemented in C++, with bugfixes and
+      performance enhancements.
+    '';
+    homepage = http://www.rahul.net/dholmes/ctorrent/;
+    license = stdenv.lib.licenses.gpl2Plus;
+    platforms = stdenv.lib.platforms.unix;
+    maintainers = [ stdenv.lib.maintainers.devhell ];
+  };
+}