Merge pull request #299633 from r-ryantm/auto-update/libtoxcore

libtoxcore: 0.2.18 -> 0.2.19
This commit is contained in:
Weijia Wang 2024-04-01 19:00:33 +02:00 committed by GitHub
commit dca4c5c533
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 14 additions and 17 deletions

View file

@ -14,14 +14,14 @@
let buildToxAV = !stdenv.isAarch32; let buildToxAV = !stdenv.isAarch32;
in stdenv.mkDerivation rec { in stdenv.mkDerivation rec {
pname = "libtoxcore"; pname = "libtoxcore";
version = "0.2.18"; version = "0.2.19";
src = src =
# We need the prepared sources tarball. # We need the prepared sources tarball.
fetchurl { fetchurl {
url = url =
"https://github.com/TokTok/c-toxcore/releases/download/v${version}/c-toxcore-${version}.tar.gz"; "https://github.com/TokTok/c-toxcore/releases/download/v${version}/c-toxcore-${version}.tar.gz";
sha256 = "sha256-8pQFN5mIY1k+KLxqa19W8JZ19s2KKDJre8MbSDbAiUI="; sha256 = "sha256-i0GPZHDbCFz1mpkVaFYTVWVW3yv0JxSPGBS3sRhihZQ=";
}; };
cmakeFlags = [ cmakeFlags = [
@ -51,11 +51,11 @@ in stdenv.mkDerivation rec {
# We might be getting the wrong pkg-config file anyway: # We might be getting the wrong pkg-config file anyway:
# https://github.com/TokTok/c-toxcore/issues/2334 # https://github.com/TokTok/c-toxcore/issues/2334
meta = with lib; { meta = {
description = "P2P FOSS instant messaging application aimed to replace Skype"; description = "P2P FOSS instant messaging application aimed to replace Skype";
homepage = "https://tox.chat"; homepage = "https://tox.chat";
license = licenses.gpl3Plus; license = lib.licenses.gpl3Plus;
maintainers = with maintainers; [ peterhoeg ehmry ]; maintainers = with lib.maintainers; [ peterhoeg ehmry ];
platforms = platforms.all; platforms = lib.platforms.all;
}; };
} }

View file

@ -4,13 +4,13 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "toxic"; pname = "toxic";
version = "0.11.3"; version = "0.15.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "Tox"; owner = "TokTok";
repo = "toxic"; repo = "toxic";
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-BabRY9iu5ccEXo5POrWkWaIWAeQU4MVlMK8I+Iju6aQ="; sha256 = "sha256-+nOjlQED2pbYwGV6IGeKK1pymBSrDVWCWKjZ42vib7E=";
}; };
makeFlags = [ "PREFIX=$(out)"]; makeFlags = [ "PREFIX=$(out)"];
@ -23,11 +23,12 @@ stdenv.mkDerivation rec {
]; ];
nativeBuildInputs = [ pkg-config libconfig ]; nativeBuildInputs = [ pkg-config libconfig ];
meta = with lib; src.meta // { meta = src.meta // {
description = "Reference CLI for Tox"; description = "Reference CLI for Tox";
mainProgram = "toxic"; mainProgram = "toxic";
license = licenses.gpl3Plus; homepage = "https://github.com/TokTok/toxic";
maintainers = with maintainers; [ ehmry ]; license = lib.licenses.gpl3Only;
platforms = platforms.linux; maintainers = with lib.maintainers; [ ehmry ];
platforms = lib.platforms.linux;
}; };
} }

View file

@ -23143,8 +23143,6 @@ with pkgs;
libtorrent-rasterbar = libtorrent-rasterbar-2_0_x; libtorrent-rasterbar = libtorrent-rasterbar-2_0_x;
libtoxcore = callPackage ../development/libraries/libtoxcore { };
libtpms = callPackage ../tools/security/libtpms { }; libtpms = callPackage ../tools/security/libtpms { };
libtap = callPackage ../development/libraries/libtap { }; libtap = callPackage ../development/libraries/libtap { };
@ -35263,8 +35261,6 @@ with pkgs;
toipe = callPackage ../applications/misc/toipe { }; toipe = callPackage ../applications/misc/toipe { };
toxic = callPackage ../applications/networking/instant-messengers/toxic { };
toxiproxy = callPackage ../development/tools/toxiproxy { }; toxiproxy = callPackage ../development/tools/toxiproxy { };
tqsl = callPackage ../applications/radio/tqsl { }; tqsl = callPackage ../applications/radio/tqsl { };