toxic: 20150125 -> 20160728

This commit is contained in:
Franz Pletz 2016-07-31 18:00:28 +02:00
parent 6ee129b29f
commit 9146a62f51
No known key found for this signature in database
GPG Key ID: 846FDED7792617B4

View File

@ -1,22 +1,23 @@
{ stdenv, fetchFromGitHub, autoconf, libtool, automake, libsodium, ncurses { stdenv, fetchFromGitHub, libsodium, ncurses, curl
, libtoxcore, openal, libvpx, freealut, libconfig, pkgconfig }: , libtoxcore-dev, openal, libvpx, freealut, libconfig, pkgconfig
, libqrencode }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "toxic-dev-20150125"; name = "toxic-dev-20160728";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "Tox"; owner = "Tox";
repo = "toxic"; repo = "toxic";
rev = "4badc983ea"; rev = "cb21672600206423c844306a84f8b122e534c348";
sha256 = "01zk6316v51f1zvp5ss53ay49h3nnaq5snlk0gxmsrmwg71bsnm6"; sha256 = "1nq1xnbyjfrk8jrjvk5sli1bm3i9r8b4m8f4xgmiz68mx1r3fn5k";
}; };
makeFlags = [ "-Cbuild" "PREFIX=$(out)" ]; makeFlags = [ "PREFIX=$(out)" ];
installFlags = [ "PREFIX=$(out)" ]; installFlags = [ "PREFIX=$(out)" ];
nativeBuildInputs = [ pkgconfig libconfig ];
buildInputs = [ buildInputs = [
autoconf libtool automake libtoxcore libsodium ncurses libtoxcore-dev libsodium ncurses libqrencode curl
libconfig pkgconfig
] ++ stdenv.lib.optionals (!stdenv.isArm) [ ] ++ stdenv.lib.optionals (!stdenv.isArm) [
openal libvpx freealut openal libvpx freealut
]; ];