about summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/qtox/default.nix
diff options
context:
space:
mode:
authorJascha Geerds <jg@ekby.de>2014-12-04 02:29:56 +0100
committerJascha Geerds <jg@ekby.de>2014-12-04 02:29:56 +0100
commitc57a4c2f78e0fbd992de5df8f1beec3858817891 (patch)
tree70b7fff1d28f35eeff2fe85c5a274722f3686ec4 /pkgs/applications/networking/instant-messengers/qtox/default.nix
parentc347f1c26fecf83546a48c5b0d6c549be8020c7e (diff)
downloadnixlib-c57a4c2f78e0fbd992de5df8f1beec3858817891.tar
nixlib-c57a4c2f78e0fbd992de5df8f1beec3858817891.tar.gz
nixlib-c57a4c2f78e0fbd992de5df8f1beec3858817891.tar.bz2
nixlib-c57a4c2f78e0fbd992de5df8f1beec3858817891.tar.lz
nixlib-c57a4c2f78e0fbd992de5df8f1beec3858817891.tar.xz
nixlib-c57a4c2f78e0fbd992de5df8f1beec3858817891.tar.zst
nixlib-c57a4c2f78e0fbd992de5df8f1beec3858817891.zip
Update libtoxcore and qtox to the newest dev version
As from now qtox depends on openalSoft instead of openal. This is due to
incompatibilities between those to two implementations. Anyway, this
should be okay because their official debian package depends on
openalSoft as well.
Diffstat (limited to 'pkgs/applications/networking/instant-messengers/qtox/default.nix')
-rw-r--r--pkgs/applications/networking/instant-messengers/qtox/default.nix17
1 files changed, 9 insertions, 8 deletions
diff --git a/pkgs/applications/networking/instant-messengers/qtox/default.nix b/pkgs/applications/networking/instant-messengers/qtox/default.nix
index 438b6f35145d..00cf1b9adae7 100644
--- a/pkgs/applications/networking/instant-messengers/qtox/default.nix
+++ b/pkgs/applications/networking/instant-messengers/qtox/default.nix
@@ -1,29 +1,30 @@
-{ stdenv, fetchFromGitHub, pkgconfig, libtoxcore, qt5, openal, opencv }:
+{ stdenv, fetchFromGitHub, pkgconfig, libtoxcore, qt5, openalSoft, opencv
+, libsodium }:
 
 
 stdenv.mkDerivation rec {
-  name = "qtox-dev-20140918";
+  name = "qtox-dev-20141201";
 
   src = fetchFromGitHub {
     owner = "tux3";
     repo = "qTox";
-    rev = "f06ec65bca";
-    sha256 = "0r7qc444bgsxawyya5nw3xk1c50b90307lcwazs8mn35h4snr97m";
+    rev = "qtox-windows-1417469442.11";
+    sha256 = "02nxj0w5qbgc79n8mgyqldk1yadf4p8pysn79f7fvi8fxq4j0j5n";
   };
 
-  buildInputs = [ pkgconfig libtoxcore qt5 openal opencv ];
+  buildInputs = [ pkgconfig libtoxcore qt5 openalSoft opencv libsodium ];
 
   configurePhase = "qmake";
 
   installPhase = ''
-    ensureDir $out/bin
+    mkdir $out/bin
     cp qtox $out/bin
   '';
 
   meta = with stdenv.lib; {
     description = "QT Tox client";
     license = licenses.gpl3;
-    maintainers = with stdenv.lib.maintainers; [ viric ];
-    platforms = stdenv.lib.platforms.all;
+    maintainers = with maintainers; [ viric jgeerds ];
+    platforms = platforms.all;
   };
 }