libtoxcore: 0.2.18 -> 0.2.19

This commit is contained in:
Emery Hemingway 2024-03-31 09:39:19 +01:00
parent 81e18dae4f
commit d9b42d5143

View File

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