utox: 0.9.8 -> 0.12.2

This commit is contained in:
Peter Hoeg 2017-02-14 15:00:22 +08:00
parent 7690ec0022
commit e110f38bd4

View File

@ -1,20 +1,26 @@
{ stdenv, fetchFromGitHub, pkgconfig, libtoxcore-dev, filter-audio, dbus, libvpx, libX11, openal, freetype, libv4l { stdenv, fetchFromGitHub, cmake, pkgconfig, libtoxcore, filter-audio, dbus, libvpx, libX11, openal, freetype, libv4l
, libXrender, fontconfig, libXext, libXft, utillinux, git, libsodium }: , libXrender, fontconfig, libXext, libXft, utillinux, git, libsodium }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "utox-${version}"; name = "utox-${version}";
version = "0.9.8"; version = "0.12.2";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "GrayHatter"; owner = "uTox";
repo = "uTox"; repo = "uTox";
rev = "v${version}"; rev = "v${version}";
sha256 = "0ahwdwqhi1gmvw80jihc1ba4cqqnx8ifjnzazxidfdky4ikzccmn"; sha256 = "1y26dpx0qc01mhv2f325ymyc3r7ihayrr10rp25p1bs24010azwn";
}; };
buildInputs = [ pkgconfig libtoxcore-dev dbus libvpx libX11 openal freetype buildInputs = [
libv4l libXrender fontconfig libXext libXft filter-audio libtoxcore dbus libvpx libX11 openal freetype
git libsodium ]; libv4l libXrender fontconfig libXext libXft filter-audio
libsodium
];
nativeBuildInputs = [
cmake git pkgconfig
];
doCheck = false; doCheck = false;