mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 14:22:50 +03:00
toxic: Update to the newest dev version
This update is necessary due to API changes in libtoxcore. Sad to say that the recent stable version doesn't work with our libtoxcore. We need to update to the recent dev version.
This commit is contained in:
parent
c57a4c2f78
commit
44dd2ed9ec
@ -1,17 +1,17 @@
|
||||
{ stdenv, fetchurl, autoconf, libtool, automake, libsodium, ncurses
|
||||
{ stdenv, fetchFromGitHub, autoconf, libtool, automake, libsodium, ncurses
|
||||
, libtoxcore, openal, libvpx, freealut, libconfig, pkgconfig }:
|
||||
|
||||
let
|
||||
version = "0.5.1";
|
||||
in stdenv.mkDerivation rec {
|
||||
name = "toxic-${version}";
|
||||
stdenv.mkDerivation rec {
|
||||
name = "toxic-dev-20141130";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/Tox/toxic/archive/v${version}.tar.gz";
|
||||
sha256 = "0zzfgwm17a4xcy9l0ll2pksp45mz6f4s3isdrgjpw1xibv9xnzcm";
|
||||
src = fetchFromGitHub {
|
||||
owner = "Tox";
|
||||
repo = "toxic";
|
||||
rev = "4acfe84171";
|
||||
sha256 = "1yqglh9fm75zph4fzf3z4gwmamngypwpvb7shpqgakdg8ybq0a8s";
|
||||
};
|
||||
|
||||
makeFlags = [ "-Cbuild" "VERSION=${version}" "PREFIX=$(out)" ];
|
||||
makeFlags = [ "-Cbuild" "PREFIX=$(out)" ];
|
||||
installFlags = [ "PREFIX=$(out)" ];
|
||||
|
||||
buildInputs = [
|
||||
@ -21,10 +21,10 @@ in stdenv.mkDerivation rec {
|
||||
openal libvpx freealut
|
||||
];
|
||||
|
||||
meta = {
|
||||
meta = with stdenv.lib; {
|
||||
description = "Reference CLI for Tox";
|
||||
license = stdenv.lib.licenses.gpl3Plus;
|
||||
maintainers = with stdenv.lib.maintainers; [ viric ];
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ viric jgeerds ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user