summary refs log tree commit diff
path: root/pkgs/development/libraries/libtoxcore/new-api.nix
diff options
context:
space:
mode:
authorPeter Hoeg <peter@speartail.com>2017-02-14 14:57:48 +0800
committerPeter Hoeg <peter@speartail.com>2017-02-14 14:57:48 +0800
commit8cef304ede7f8d9d3647dcb885e05df9d097469c (patch)
treec57fd8dff02333763ada03aa4b99f73452a1e239 /pkgs/development/libraries/libtoxcore/new-api.nix
parent4450327c062a41f7df2f6756057df4ebb6548011 (diff)
downloadnixpkgs-8cef304ede7f8d9d3647dcb885e05df9d097469c.tar
nixpkgs-8cef304ede7f8d9d3647dcb885e05df9d097469c.tar.gz
nixpkgs-8cef304ede7f8d9d3647dcb885e05df9d097469c.tar.bz2
nixpkgs-8cef304ede7f8d9d3647dcb885e05df9d097469c.tar.lz
nixpkgs-8cef304ede7f8d9d3647dcb885e05df9d097469c.tar.xz
nixpkgs-8cef304ede7f8d9d3647dcb885e05df9d097469c.tar.zst
nixpkgs-8cef304ede7f8d9d3647dcb885e05df9d097469c.zip
libtoxcore: init at 0.1.6 and move old versions away
Diffstat (limited to 'pkgs/development/libraries/libtoxcore/new-api.nix')
-rw-r--r--pkgs/development/libraries/libtoxcore/new-api.nix56
1 files changed, 56 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libtoxcore/new-api.nix b/pkgs/development/libraries/libtoxcore/new-api.nix
new file mode 100644
index 00000000000..8d0a467c82a
--- /dev/null
+++ b/pkgs/development/libraries/libtoxcore/new-api.nix
@@ -0,0 +1,56 @@
+{ stdenv, fetchFromGitHub, autoreconfHook, libsodium, ncurses, libopus
+, libvpx, check, libconfig, pkgconfig }:
+
+stdenv.mkDerivation rec {
+  name = "tox-core-new-20160727";
+
+  src = fetchFromGitHub {
+    owner  = "irungentoo";
+    repo   = "toxcore";
+    rev    = "755f084e8720b349026c85afbad58954cb7ff1d4";
+    sha256 = "0ap1gvlyihnfivv235dbrgsxsiiz70bhlmlr5gn1027w3h5kqz8w";
+  };
+
+  NIX_LDFLAGS = "-lgcc_s";
+
+  postPatch = ''
+    # within Nix chroot builds, localhost is unresolvable
+    sed -i -e '/DEFTESTCASE(addr_resolv_localhost)/d' \
+      auto_tests/network_test.c
+    # takes WAAAY too long (~10 minutes) and would timeout
+    sed -i -e '/DEFTESTCASE[^(]*(many_clients\>/d' \
+      auto_tests/tox_test.c
+  '';
+
+  configureFlags = [
+    "--with-libsodium-headers=${libsodium.dev}/include"
+    "--with-libsodium-libs=${libsodium.out}/lib"
+    "--enable-ntox"
+    "--enable-daemon"
+  ];
+
+
+  nativeBuildInputs = [ autoreconfHook pkgconfig ];
+  buildInputs = [
+    autoreconfHook libsodium ncurses check libconfig
+  ] ++ stdenv.lib.optionals (!stdenv.isArm) [
+    libopus
+  ];
+
+  propagatedBuildInputs = stdenv.lib.optionals (!stdenv.isArm) [ libvpx ];
+
+  # Some tests fail randomly due to timeout. This kind of problem is well known
+  # by upstream: https://github.com/irungentoo/toxcore/issues/{950,1054}
+  # They don't recommend running tests on 50core machines with other cpu-bound
+  # tests running in parallel.
+  #
+  # NOTE: run the tests locally on your machine before upgrading this package!
+  doCheck = false;
+
+  meta = with stdenv.lib; {
+    description = "P2P FOSS instant messaging application aimed to replace Skype with crypto";
+    license = licenses.gpl3Plus;
+    maintainers = with maintainers; [ viric jgeerds ];
+    platforms = platforms.all;
+  };
+}