1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/applications/networking/instant-messengers/utox/default.nix
Evan Wallace 5826097522 utox: Fixed test configuration
Moved 'check' to nativeBuildInputs, as it is only used by the tests
2017-11-02 09:53:09 +00:00

42 lines
1,012 B
Nix

{ stdenv, fetchFromGitHub, cmake, pkgconfig, libtoxcore, filter-audio, dbus, libvpx, libX11, openal, freetype, libv4l
, libXrender, fontconfig, libXext, libXft, utillinux, git, libsodium, libopus, check }:
stdenv.mkDerivation rec {
name = "utox-${version}";
version = "0.16.1";
src = fetchFromGitHub {
owner = "uTox";
repo = "uTox";
rev = "v${version}";
sha256 = "0ak10925v67yaga2pw9yzp0xkb5j1181srfjdyqpd29v8mi9j828";
};
buildInputs = [
libtoxcore dbus libvpx libX11 openal freetype
libv4l libXrender fontconfig libXext libXft filter-audio
libsodium libopus
];
nativeBuildInputs = [
cmake git pkgconfig check
];
cmakeFlags = [
"-DENABLE_UPDATER=OFF"
];
doCheck = false;
checkTarget = "test";
meta = with stdenv.lib; {
description = "Lightweight Tox client";
homepage = https://github.com/uTox/uTox;
license = licenses.gpl3;
maintainers = with maintainers; [ domenkozar jgeerds ];
platforms = platforms.all;
};
}