summary refs log tree commit diff
path: root/pkgs/applications/networking/p2p
diff options
context:
space:
mode:
authorFlorian Richter <mail@f1ori.de>2014-06-22 16:28:37 +0200
committerVladimír Čunát <vcunat@gmail.com>2014-08-14 21:11:20 +0200
commitf5aa55a3f977ae5a5ddd0258e6355a9840d00038 (patch)
treea2ebd2ce9fcbf1395e8d57e54ef83a327db4c92c /pkgs/applications/networking/p2p
parent8e99197c9982375f624c9e472c338620c74ddac4 (diff)
downloadnixpkgs-f5aa55a3f977ae5a5ddd0258e6355a9840d00038.tar
nixpkgs-f5aa55a3f977ae5a5ddd0258e6355a9840d00038.tar.gz
nixpkgs-f5aa55a3f977ae5a5ddd0258e6355a9840d00038.tar.bz2
nixpkgs-f5aa55a3f977ae5a5ddd0258e6355a9840d00038.tar.lz
nixpkgs-f5aa55a3f977ae5a5ddd0258e6355a9840d00038.tar.xz
nixpkgs-f5aa55a3f977ae5a5ddd0258e6355a9840d00038.tar.zst
nixpkgs-f5aa55a3f977ae5a5ddd0258e6355a9840d00038.zip
Add eiskaltdcpp, a p2p client for the DC protocol
Diffstat (limited to 'pkgs/applications/networking/p2p')
-rw-r--r--pkgs/applications/networking/p2p/eiskaltdcpp/default.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/pkgs/applications/networking/p2p/eiskaltdcpp/default.nix b/pkgs/applications/networking/p2p/eiskaltdcpp/default.nix
new file mode 100644
index 00000000000..b2ea361ecca
--- /dev/null
+++ b/pkgs/applications/networking/p2p/eiskaltdcpp/default.nix
@@ -0,0 +1,34 @@
+{ stdenv, fetchurl, cmake, pkgconfig, qt4, boost, bzip2, libX11, pcre, libidn, lua5, miniupnpc, aspell, gettext }:
+
+stdenv.mkDerivation rec {
+  name = "eiskaltdcpp-2.2.9";
+
+  src = fetchurl {
+    url = "https://eiskaltdc.googlecode.com/files/${name}.tar.xz";
+    sha256 = "3d9170645450f9cb0a605278b8646fec2110b9637910d86fd27cf245cbe24eaf";
+  };
+
+  buildInputs = [ cmake pkgconfig qt4 boost bzip2 libX11 pcre libidn lua5 miniupnpc aspell gettext ];
+
+  cmakeFlags = ''
+    -DUSE_ASPELL=ON
+    -DUSE_QT_QML=ON
+    -DFREE_SPACE_BAR_C=ON
+    -DUSE_MINIUPNP=ON
+    -DDBUS_NOTIFY=ON
+    -DUSE_JS=ON
+    -DPERL_REGEX=ON
+    -DUSE_CLI_XMLRPC=ON
+    -DWITH_SOUNDS=ON
+    -DLUA_SCRIPT=ON
+    -DWITH_LUASCRIPTS=ON
+  '';
+
+  enableParallelBuilding = true;
+
+  meta = {
+    description = "EiskaltDC++ is a cross-platform program that uses the Direct Connect and ADC protocols";
+    homepage = https://code.google.com/p/eiskaltdc/;
+    license = stdenv.lib.licenses.gpl3Plus;
+  };
+}