toxprpl: mark broken, unmantained and doesn't build

This commit is contained in:
Emery Hemingway 2022-09-27 17:17:50 -05:00 committed by ehmry
parent 223e7d16ca
commit 1a62113dd9
3 changed files with 1 additions and 65 deletions

View File

@ -19,6 +19,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ autoreconfHook ];
meta = with lib; {
broken = true; # unmaintained and not compatible with current Tox API.
homepage = "https://github.com/jin-eld/tox-prpl";
description = "Tox plugin for Pidgin / libpurple";
license = licenses.gpl3;

View File

@ -1,58 +0,0 @@
{ lib, stdenv, fetchFromGitHub, autoreconfHook, libsodium, ncurses, libopus
, libvpx, check, libconfig, pkg-config }:
stdenv.mkDerivation {
pname = "tox-core-new";
version = "unstable-2016-07-27";
src = fetchFromGitHub {
owner = "irungentoo";
repo = "toxcore";
rev = "755f084e8720b349026c85afbad58954cb7ff1d4";
sha256 = "0ap1gvlyihnfivv235dbrgsxsiiz70bhlmlr5gn1027w3h5kqz8w";
};
NIX_LDFLAGS = "-lgcc_s";
postPatch = ''
# within Nix chroot builds, localhost is unresolvable
sed -i -e '/DEFTESTCASE(addr_resolv_localhost)/d' \
auto_tests/network_test.c
# takes WAAAY too long (~10 minutes) and would timeout
sed -i -e '/DEFTESTCASE[^(]*(many_clients\>/d' \
auto_tests/tox_test.c
'';
configureFlags = [
"--with-libsodium-headers=${libsodium.dev}/include"
"--with-libsodium-libs=${libsodium.out}/lib"
"--enable-ntox"
"--enable-daemon"
];
nativeBuildInputs = [ autoreconfHook pkg-config ];
buildInputs = [
autoreconfHook libsodium ncurses check libconfig
] ++ lib.optionals (!stdenv.isAarch32) [
libopus
];
propagatedBuildInputs = lib.optionals (!stdenv.isAarch32) [ libvpx ];
# Some tests fail randomly due to timeout. This kind of problem is well known
# by upstream: https://github.com/irungentoo/toxcore/issues/{950,1054}
# They don't recommend running tests on 50core machines with other cpu-bound
# tests running in parallel.
#
# NOTE: run the tests locally on your machine before upgrading this package!
doCheck = false;
meta = with lib; {
broken = stdenv.isDarwin;
description = "P2P FOSS instant messaging application aimed to replace Skype with crypto";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ ];
platforms = platforms.all;
};
}

View File

@ -20506,9 +20506,6 @@ with pkgs;
libtorrent-rasterbar = libtorrent-rasterbar-2_0_x;
# this is still the new version of the old API
libtoxcore-new = callPackage ../development/libraries/libtoxcore/new-api.nix { };
inherit (callPackages ../development/libraries/libtoxcore {})
libtoxcore_0_1 libtoxcore_0_2;
libtoxcore = libtoxcore_0_2;
@ -30813,10 +30810,6 @@ with pkgs;
tdlib-purple = callPackage ../applications/networking/instant-messengers/pidgin-plugins/tdlib-purple { };
toxprpl = callPackage ../applications/networking/instant-messengers/pidgin-plugins/tox-prpl {
libtoxcore = libtoxcore-new;
};
pidgin-opensteamworks = callPackage ../applications/networking/instant-messengers/pidgin-plugins/pidgin-opensteamworks { };
purple-facebook = callPackage ../applications/networking/instant-messengers/pidgin-plugins/purple-facebook { };