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 {
|
2014-12-04 02:53:48 +01:00
|
|
|
name = "utox-dev-20141130";
|
2014-07-31 12:56:16 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "notsecure";
|
|
|
|
repo = "uTox";
|
2014-12-04 02:53:48 +01:00
|
|
|
rev = "38b0a2014f";
|
|
|
|
sha256 = "00g9fsp83yjq6dfim3hfpag0ny9w5kydghycfj3ic8qaljp47y8a";
|
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;
|
2014-12-04 02:53:48 +01:00
|
|
|
maintainers = with maintainers; [ iElectric jgeerds ];
|
|
|
|
platforms = platforms.all;
|
2014-07-31 12:56:16 +02:00
|
|
|
};
|
|
|
|
}
|