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

29 lines
762 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-20141130";
2014-07-31 12:56:16 +02:00
src = fetchFromGitHub {
owner = "notsecure";
repo = "uTox";
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;
maintainers = with maintainers; [ iElectric jgeerds ];
platforms = platforms.all;
2014-07-31 12:56:16 +02:00
};
}