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

29 lines
776 B
Nix
Raw Normal View History

2014-07-31 12:56:16 +02:00
{ stdenv, fetchFromGitHub, pkgconfig, libtoxcore, dbus, libvpx, libX11, openal, freetype, libv4l
, libXrender, fontconfig, libXext, libXft }:
stdenv.mkDerivation rec {
name = "utox-dev-20140921";
2014-07-31 12:56:16 +02:00
src = fetchFromGitHub {
owner = "notsecure";
repo = "uTox";
rev = "c0afc95cf3";
sha256 = "0a6i0c9crj6b27alm8q0fcfj8q425khg5305sp57r7pj505l4d1f";
2014-07-31 12:56:16 +02:00
};
buildInputs = [ pkgconfig libtoxcore dbus libvpx libX11 openal freetype
libv4l libXrender fontconfig libXext libXft ];
doCheck = false;
2014-09-18 09:28:32 +02:00
makeFlags = "PREFIX=$(out)";
2014-07-31 12:56:16 +02:00
meta = with stdenv.lib; {
description = "Lightweight Tox client";
license = licenses.gpl3;
maintainers = with stdenv.lib.maintainers; [ iElectric ];
platforms = stdenv.lib.platforms.all;
};
}