chatterino{2,7}: pin boost to 1.86 (#375928)

This commit is contained in:
rewine
2025-01-23 17:28:10 +08:00
committed by GitHub
2 changed files with 42 additions and 34 deletions
+40 -34
View File
@@ -3,42 +3,48 @@
callPackage,
fetchFromGitHub,
nix-update-script,
boost186,
}:
(callPackage ./common.nix { }).overrideAttrs (finalAttrs: _: {
pname = "chatterino2";
version = "2.5.2";
(callPackage ./common.nix {
boost = boost186;
}).overrideAttrs
(
finalAttrs: _: {
pname = "chatterino2";
version = "2.5.2";
src = fetchFromGitHub {
owner = "Chatterino";
repo = "chatterino2";
tag = "v${finalAttrs.version}";
hash = "sha256-nrw4dQ7QjPPMbZXMC+p3VgUQKwc1ih6qS13D9+9oNuw=";
fetchSubmodules = true;
};
src = fetchFromGitHub {
owner = "Chatterino";
repo = "chatterino2";
tag = "v${finalAttrs.version}";
hash = "sha256-nrw4dQ7QjPPMbZXMC+p3VgUQKwc1ih6qS13D9+9oNuw=";
fetchSubmodules = true;
};
passthru = {
buildChatterino = args: callPackage ./common.nix args;
updateScript = nix-update-script { };
};
passthru = {
buildChatterino = args: callPackage ./common.nix args;
updateScript = nix-update-script { };
};
meta = {
description = "Chat client for Twitch chat";
mainProgram = "chatterino";
longDescription = ''
Chatterino is a chat client for Twitch chat. It aims to be an
improved/extended version of the Twitch web chat. Chatterino 2 is
the second installment of the Twitch chat client series
"Chatterino".
'';
homepage = "https://github.com/Chatterino/chatterino2";
changelog = "https://github.com/Chatterino/chatterino2/blob/${finalAttrs.src.rev}/CHANGELOG.md";
license = lib.licenses.mit;
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [
rexim
supa
marie
];
};
})
meta = {
description = "Chat client for Twitch chat";
mainProgram = "chatterino";
longDescription = ''
Chatterino is a chat client for Twitch chat. It aims to be an
improved/extended version of the Twitch web chat. Chatterino 2 is
the second installment of the Twitch chat client series
"Chatterino".
'';
homepage = "https://github.com/Chatterino/chatterino2";
changelog = "https://github.com/Chatterino/chatterino2/blob/${finalAttrs.src.rev}/CHANGELOG.md";
license = lib.licenses.mit;
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [
rexim
supa
marie
];
};
}
)
+2
View File
@@ -3,10 +3,12 @@
chatterino2,
fetchFromGitHub,
nix-update-script,
boost186,
}:
(chatterino2.buildChatterino {
enableAvifSupport = true;
boost = boost186;
}).overrideAttrs
(
finalAttrs: _: {