chatterino2: 2.5.2 -> 2.5.3; chatterino7: 7.5.2 -> 7.5.3 (#398690)

This commit is contained in:
Peder Bergebakken Sundt 2025-04-20 03:18:32 +02:00 committed by GitHub
commit e45b7df7a4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 10 additions and 5 deletions

View file

@ -7,6 +7,7 @@
boost, boost,
openssl, openssl,
libsecret, libsecret,
libnotify,
libavif, libavif,
kdePackages, kdePackages,
}: }:
@ -24,13 +25,17 @@ stdenv.mkDerivation {
qtsvg qtsvg
qt5compat qt5compat
qtkeychain qtkeychain
qtimageformats
]) ])
++ [ ++ [
boost boost
openssl openssl
libsecret libsecret
] ]
++ lib.optional stdenv.hostPlatform.isLinux kdePackages.qtwayland ++ lib.optionals stdenv.hostPlatform.isLinux [
kdePackages.qtwayland
libnotify
]
++ lib.optional enableAvifSupport libavif; ++ lib.optional enableAvifSupport libavif;
cmakeFlags = [ cmakeFlags = [

View file

@ -12,13 +12,13 @@
( (
finalAttrs: _: { finalAttrs: _: {
pname = "chatterino2"; pname = "chatterino2";
version = "2.5.2"; version = "2.5.3";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "Chatterino"; owner = "Chatterino";
repo = "chatterino2"; repo = "chatterino2";
tag = "v${finalAttrs.version}"; tag = "v${finalAttrs.version}";
hash = "sha256-nrw4dQ7QjPPMbZXMC+p3VgUQKwc1ih6qS13D9+9oNuw="; hash = "sha256-W2sqlqL6aa68aQ3nE161G64x7K7p8iByX03g1dseQbs=";
fetchSubmodules = true; fetchSubmodules = true;
}; };

View file

@ -13,13 +13,13 @@
( (
finalAttrs: _: { finalAttrs: _: {
pname = "chatterino7"; pname = "chatterino7";
version = "7.5.2"; version = "7.5.3";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "SevenTV"; owner = "SevenTV";
repo = "chatterino7"; repo = "chatterino7";
tag = "v${finalAttrs.version}"; tag = "v${finalAttrs.version}";
hash = "sha256-kQeW9Qa8NPs47xUlqggS4Df4fxIoknG8O5IBdOeIo+4="; hash = "sha256-KrAr3DcQDjb+LP+vIf0qLSSgII0m5rNwhncLNHlLaC8=";
fetchSubmodules = true; fetchSubmodules = true;
}; };