about summary refs log tree commit diff
path: root/pkgs/development/libraries/libtoxcore
diff options
context:
space:
mode:
authorArtjom Vejsel <akawolf0@gmail.com>2015-07-01 10:16:09 +0300
committerArtjom Vejsel <akawolf0@gmail.com>2015-07-01 14:38:56 +0300
commit68f4a0f0eaf175eea2f17383105dae7b97d526f2 (patch)
tree2d431280ddc92138b8d0fd4760bc5189d40b22a2 /pkgs/development/libraries/libtoxcore
parent6a6ecde159848ac21f491226ab542b39cbd58744 (diff)
downloadnixlib-68f4a0f0eaf175eea2f17383105dae7b97d526f2.tar
nixlib-68f4a0f0eaf175eea2f17383105dae7b97d526f2.tar.gz
nixlib-68f4a0f0eaf175eea2f17383105dae7b97d526f2.tar.bz2
nixlib-68f4a0f0eaf175eea2f17383105dae7b97d526f2.tar.lz
nixlib-68f4a0f0eaf175eea2f17383105dae7b97d526f2.tar.xz
nixlib-68f4a0f0eaf175eea2f17383105dae7b97d526f2.tar.zst
nixlib-68f4a0f0eaf175eea2f17383105dae7b97d526f2.zip
libtoxcore: added new-api version
Diffstat (limited to 'pkgs/development/libraries/libtoxcore')
-rw-r--r--pkgs/development/libraries/libtoxcore/new-api/default.nix60
-rw-r--r--pkgs/development/libraries/libtoxcore/old-api/default.nix (renamed from pkgs/development/libraries/libtoxcore/default.nix)0
2 files changed, 60 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libtoxcore/new-api/default.nix b/pkgs/development/libraries/libtoxcore/new-api/default.nix
new file mode 100644
index 000000000000..42f81cf6a9d2
--- /dev/null
+++ b/pkgs/development/libraries/libtoxcore/new-api/default.nix
@@ -0,0 +1,60 @@
+{ stdenv, fetchFromGitHub, autoconf, libtool, automake, libsodium, ncurses, libopus
+, libvpx, check, libconfig, pkgconfig }:
+
+stdenv.mkDerivation rec {
+  name = "tox-core-dev-20150629";
+
+  src = fetchFromGitHub {
+    owner  = "irungentoo";
+    repo   = "toxcore";
+    rev    = "219fabc0f5dbaac7968cb7728d25dface3ebb2ea";
+    sha256 = "1rsnxa5b7i2zclx0kzbf4a5mds0jfkvfjz1s4whzk7rf8w3vpqkh";
+  };
+
+  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
+  '';
+
+  preConfigure = ''
+    autoreconf -i
+  '';
+
+  configureFlags = [
+    "--with-libsodium-headers=${libsodium}/include"
+    "--with-libsodium-libs=${libsodium}/lib"
+    "--enable-ntox"
+    "--enable-daemon"
+  ];
+
+  buildInputs = [
+    autoconf libtool automake libsodium ncurses
+    check libconfig pkgconfig
+  ] ++ 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;
+  };
+}
+
diff --git a/pkgs/development/libraries/libtoxcore/default.nix b/pkgs/development/libraries/libtoxcore/old-api/default.nix
index 3ff2e1ad285d..3ff2e1ad285d 100644
--- a/pkgs/development/libraries/libtoxcore/default.nix
+++ b/pkgs/development/libraries/libtoxcore/old-api/default.nix