From 5826097522a22d8e1db72441aac26d68bf31966d Mon Sep 17 00:00:00 2001 From: Evan Wallace Date: Thu, 2 Nov 2017 09:53:09 +0000 Subject: [PATCH] utox: Fixed test configuration Moved 'check' to nativeBuildInputs, as it is only used by the tests --- .../networking/instant-messengers/utox/default.nix | 6 ++++-- 1 file 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 7506949f153..9c4d88761b8 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;