mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
add uTox
This commit is contained in:
parent
62d0a320b3
commit
e07c2c2cfd
2 changed files with 30 additions and 0 deletions
|
@ -0,0 +1,28 @@
|
|||
{ stdenv, fetchFromGitHub, pkgconfig, libtoxcore, dbus, libvpx, libX11, openal, freetype, libv4l
|
||||
, libXrender, fontconfig, libXext, libXft }:
|
||||
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "utox-dev";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "notsecure";
|
||||
repo = "uTox";
|
||||
rev = "d70f9bfb4ff8a156ec35803da6226b0ac8c47961";
|
||||
sha256 = "10cvsg0phv0jsrdl3zkk339c4bzn3xc82q1x90h6gcnrbg4vzmp0";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgconfig libtoxcore dbus libvpx libX11 openal freetype
|
||||
libv4l libXrender fontconfig libXext libXft ];
|
||||
|
||||
doCheck = false;
|
||||
|
||||
makeFlags = "DESTDIR=$(out)";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Lightweight Tox client";
|
||||
license = licenses.gpl3;
|
||||
maintainers = with stdenv.lib.maintainers; [ iElectric ];
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
};
|
||||
}
|
|
@ -9808,6 +9808,8 @@ let
|
|||
webkit = webkitgtk2;
|
||||
};
|
||||
|
||||
uTox = callPackage ../applications/networking/instant-messengers/utox { };
|
||||
|
||||
vanitygen = callPackage ../applications/misc/vanitygen { };
|
||||
|
||||
vbindiff = callPackage ../applications/editors/vbindiff { };
|
||||
|
|
Loading…
Reference in a new issue