From 29b3353a9e129aa94258132f9f77dc97ad50bf70 Mon Sep 17 00:00:00 2001 From: devhell <^@regexmail.net> Date: Mon, 12 Jan 2015 20:31:26 +0000 Subject: [PATCH] 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. --- .../networking/enhanced-ctorrent/default.nix | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 pkgs/applications/networking/enhanced-ctorrent/default.nix diff --git a/pkgs/applications/networking/enhanced-ctorrent/default.nix b/pkgs/applications/networking/enhanced-ctorrent/default.nix new file mode 100644 index 000000000000..fedbfeb957ce --- /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 ]; + }; +}