nixpkgs/pkgs/applications/networking/instant-messengers/utox/default.nix

40 lines
1008 B
Nix
Raw Normal View History

2017-02-14 07:00:22 +00:00
{ stdenv, fetchFromGitHub, cmake, pkgconfig, libtoxcore, filter-audio, dbus, libvpx, libX11, openal, freetype, libv4l
, libXrender, fontconfig, libXext, libXft, utillinux, git, libsodium }:
2014-07-31 10:56:16 +00:00
2016-02-17 14:43:53 +00:00
stdenv.mkDerivation rec {
name = "utox-${version}";
2017-02-25 07:50:52 +00:00
# >= 0.14 should have unit tests and dbus support
version = "0.13.1";
2014-07-31 10:56:16 +00:00
src = fetchFromGitHub {
2017-02-14 07:00:22 +00:00
owner = "uTox";
repo = "uTox";
rev = "v${version}";
2017-02-25 07:50:52 +00:00
sha256 = "07aa92isknxf7531jr9kgk89wl5rvv34jrvir043fs9xvim5zq99";
2014-07-31 10:56:16 +00:00
};
2017-02-14 07:00:22 +00:00
buildInputs = [
libtoxcore dbus libvpx libX11 openal freetype
libv4l libXrender fontconfig libXext libXft filter-audio
libsodium
];
nativeBuildInputs = [
cmake git pkgconfig
];
2014-07-31 10:56:16 +00:00
2017-02-25 07:50:52 +00:00
cmakeFlags = [
"-DENABLE_UPDATER=OFF"
];
2014-07-31 10:56:16 +00:00
doCheck = false;
2016-02-17 14:43:53 +00:00
2014-07-31 10:56:16 +00:00
meta = with stdenv.lib; {
description = "Lightweight Tox client";
2017-02-25 07:50:52 +00:00
homepage = https://github.com/uTox/uTox;
2014-07-31 10:56:16 +00:00
license = licenses.gpl3;
maintainers = with maintainers; [ domenkozar jgeerds ];
platforms = platforms.all;
2014-07-31 10:56:16 +00:00
};
}