libtoxcore: introduce 0.2.2 in addition to 0.1.11

This commit is contained in:
Peter Hoeg 2018-04-19 18:19:23 +08:00
parent 1b1b76f70a
commit 15268306fe
2 changed files with 46 additions and 38 deletions

View File

@ -1,46 +1,51 @@
{ stdenv, fetchFromGitHub, cmake, libsodium, ncurses, libopus, libmsgpack { stdenv, fetchFromGitHub, cmake, libsodium, ncurses, libopus, libmsgpack
, libvpx, check, libconfig, pkgconfig }: , libvpx, check, libconfig, pkgconfig }:
stdenv.mkDerivation rec { let
name = "libtoxcore-${version}"; generic = { version, sha256 }:
version = "0.1.11"; stdenv.mkDerivation rec {
name = "libtoxcore-${version}";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "TokTok"; owner = "TokTok";
repo = "c-toxcore"; repo = "c-toxcore";
rev = "v${version}"; rev = "v${version}";
inherit sha256;
};
cmakeFlags = [
"-DBUILD_NTOX=ON"
"-DDHT_BOOTSTRAP=ON"
"-DBOOTSTRAP_DAEMON=ON"
];
buildInputs = [
libsodium libmsgpack ncurses libconfig
] ++ stdenv.lib.optionals (!stdenv.isAarch32) [
libopus libvpx
];
nativeBuildInputs = [ cmake pkgconfig ];
enableParallelBuilding = true;
meta = with stdenv.lib; {
description = "P2P FOSS instant messaging application aimed to replace Skype";
homepage = https://tox.chat;
license = licenses.gpl3Plus;
maintainers = with maintainers; [ peterhoeg ];
platforms = platforms.all;
};
};
in rec {
libtoxcore_0_1 = generic {
version = "0.1.11";
sha256 = "1fya5gfiwlpk6fxhalv95n945ymvp2iidiyksrjw1xw95fzsp1ij"; sha256 = "1fya5gfiwlpk6fxhalv95n945ymvp2iidiyksrjw1xw95fzsp1ij";
}; };
cmakeFlags = [ libtoxcore_0_2 = generic {
"-DBUILD_NTOX=ON" version = "0.2.2";
"-DDHT_BOOTSTRAP=ON" sha256 = "1463grbbv009pj2g6dbnyk4lr871vw41962m63v21mmp6dkrr7r5";
"-DBOOTSTRAP_DAEMON=ON"
];
buildInputs = [
libsodium libmsgpack ncurses libconfig
] ++ stdenv.lib.optionals (!stdenv.isAarch32) [
libopus
libvpx
];
nativeBuildInputs = [ cmake pkgconfig ];
enableParallelBuilding = true;
checkInputs = [ check ];
checkPhase = "ctest";
# for some reason the tests are not running - it says "No tests found!!"
doCheck = true;
meta = with stdenv.lib; {
description = "P2P FOSS instant messaging application aimed to replace Skype";
homepage = https://tox.chat;
license = licenses.gpl3Plus;
maintainers = with maintainers; [ peterhoeg ];
platforms = platforms.all;
}; };
} }

View File

@ -10358,9 +10358,12 @@ with pkgs;
libtorrentRasterbar = callPackage ../development/libraries/libtorrent-rasterbar { }; libtorrentRasterbar = callPackage ../development/libraries/libtorrent-rasterbar { };
# this is still the new version of the old API
libtoxcore-new = callPackage ../development/libraries/libtoxcore/new-api.nix { }; libtoxcore-new = callPackage ../development/libraries/libtoxcore/new-api.nix { };
libtoxcore = callPackage ../development/libraries/libtoxcore { }; inherit (callPackages ../development/libraries/libtoxcore {})
libtoxcore_0_1 libtoxcore_0_2;
libtoxcore = libtoxcore_0_2;
libtap = callPackage ../development/libraries/libtap { }; libtap = callPackage ../development/libraries/libtap { };