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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, check, cmake, pkg-config
2018-04-19 10:21:01 +00:00
, libtoxcore, filter-audio, dbus, libvpx, libX11, openal, freetype, libv4l
, libXrender, fontconfig, libXext, libXft, libsodium, libopus }:
2014-07-31 10:56:16 +00:00
2016-02-17 14:43:53 +00:00
stdenv.mkDerivation rec {
pname = "utox";
2017-11-01 06:21:37 +00:00
2021-10-28 15:16:17 +00:00
version = "0.18.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}";
2021-10-28 15:16:17 +00:00
sha256 = "sha256-DxnolxUTn+CL6TbZHKLHOUMTHhtTSWufzzOTRpKjOwc=";
2018-04-19 10:21:01 +00:00
fetchSubmodules = true;
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 libopus
2017-02-14 07:00:22 +00:00
];
nativeBuildInputs = [
cmake pkg-config
2017-02-14 07:00:22 +00:00
];
2014-07-31 10:56:16 +00:00
2017-02-25 07:50:52 +00:00
cmakeFlags = [
2018-04-19 10:21:01 +00:00
"-DENABLE_AUTOUPDATE=OFF"
2018-08-08 18:21:16 +00:00
"-DENABLE_TESTS=${if doCheck then "ON" else "OFF"}"
];
2016-02-17 14:43:53 +00:00
2018-08-08 18:21:16 +00:00
doCheck = stdenv.hostPlatform == stdenv.buildPlatform;
checkInputs = [ check ];
meta = with lib; {
2014-07-31 10:56:16 +00:00
description = "Lightweight Tox client";
homepage = "https://github.com/uTox/uTox";
2014-07-31 10:56:16 +00:00
license = licenses.gpl3;
maintainers = with maintainers; [ ];
platforms = platforms.all;
2014-07-31 10:56:16 +00:00
};
}