about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorEvan Wallace <mankarse.git@alethrea.net>2017-11-02 09:53:09 +0000
committerEvan Wallace <mankarse.git@alethrea.net>2017-11-02 09:53:09 +0000
commit5826097522a22d8e1db72441aac26d68bf31966d (patch)
tree9be878d8bab1c013708ec3a6cae871e377fa69de /pkgs
parent36c92a0df79d40cd6fb32da24b4fd072f15fceee (diff)
utox: Fixed test configuration
Moved 'check' to nativeBuildInputs, as it is only used by the tests
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/networking/instant-messengers/utox/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/applications/networking/instant-messengers/utox/default.nix b/pkgs/applications/networking/instant-messengers/utox/default.nix
index 7506949f153a1..9c4d88761b87d 100644
--- a/pkgs/applications/networking/instant-messengers/utox/default.nix
+++ b/pkgs/applications/networking/instant-messengers/utox/default.nix
@@ -16,11 +16,11 @@ stdenv.mkDerivation rec {
   buildInputs = [
     libtoxcore dbus libvpx libX11 openal freetype
     libv4l libXrender fontconfig libXext libXft filter-audio
-    libsodium libopus check
+    libsodium libopus
   ];
 
   nativeBuildInputs = [
-    cmake git pkgconfig
+    cmake git pkgconfig check
   ];
 
   cmakeFlags = [
@@ -29,6 +29,8 @@ stdenv.mkDerivation rec {
 
   doCheck = false;
 
+  checkTarget = "test";
+
   meta = with stdenv.lib; {
     description = "Lightweight Tox client";
     homepage = https://github.com/uTox/uTox;