nixpkgs/pkgs/applications/networking/instant-messengers/utox/default.nix
Lluís Batlle i Rossell 93fd8fb3a5 Updating utox/libtoxcore to the latest, to fix utox build.
There was a test failing. I also renamed the attr uTox to utox, for the more
common lowercase in all-packages.
2014-09-29 10:24:36 +02:00

28 lines
776 B
Nix

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