mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 06:47:09 +03:00
Merge pull request #31072 from Mankarse/utox-0.16.1
utox: 0.13.1 -> 0.16.1
This commit is contained in:
commit
c2bd98cc30
@ -1,26 +1,26 @@
|
||||
{ stdenv, fetchFromGitHub, cmake, pkgconfig, libtoxcore, filter-audio, dbus, libvpx, libX11, openal, freetype, libv4l
|
||||
, libXrender, fontconfig, libXext, libXft, utillinux, git, libsodium }:
|
||||
, libXrender, fontconfig, libXext, libXft, utillinux, git, libsodium, libopus, check }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "utox-${version}";
|
||||
# >= 0.14 should have unit tests and dbus support
|
||||
version = "0.13.1";
|
||||
|
||||
version = "0.16.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "uTox";
|
||||
repo = "uTox";
|
||||
rev = "v${version}";
|
||||
sha256 = "07aa92isknxf7531jr9kgk89wl5rvv34jrvir043fs9xvim5zq99";
|
||||
sha256 = "0ak10925v67yaga2pw9yzp0xkb5j1181srfjdyqpd29v8mi9j828";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
libtoxcore dbus libvpx libX11 openal freetype
|
||||
libv4l libXrender fontconfig libXext libXft filter-audio
|
||||
libsodium
|
||||
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;
|
||||
|
Loading…
Reference in New Issue
Block a user