snowflake/pkgs/chatterino7/default.nix
notohh e1505bf9a1
All checks were successful
flake check / check (push) Successful in 4m52s
fmt check / check (push) Successful in 37s
chatterino7: bump version
2023-12-10 10:16:42 -05:00

52 lines
1.3 KiB
Nix

{
stdenv,
lib,
cmake,
pkg-config,
fetchFromGitHub,
qtbase,
qtsvg,
qtmultimedia,
qtimageformats,
qttools,
boost,
openssl,
wrapQtAppsHook,
libsecret,
}:
stdenv.mkDerivation rec {
pname = "chatterino7";
version = "7.4.6";
src = fetchFromGitHub {
owner = "SevenTV";
repo = pname;
rev = "147f89b74cc42d99d962e9bc10cc002b59dcfb64";
sha256 = "sha256-3Z23LTjyH76Da9/amGWPvLpF8M1hPiqNJ8dmo8nI/88=";
fetchSubmodules = true;
};
nativeBuildInputs = [cmake pkg-config wrapQtAppsHook];
buildInputs = [qtbase qtsvg qtmultimedia qtimageformats qttools boost openssl libsecret];
postInstall =
''
mkdir -p "$out/bin"
cp "bin/chatterino" "$out/bin"
''
+ ''
mkdir -p $out/share/icons/hicolor/256x256/apps
cp $src/resources/icon.png $out/share/icons/hicolor/256x256/apps/chatterino.png
'';
meta = with lib; {
description = "Chat client for twitch.tv";
longDescription = ''
Chatterino7 is a fork of Chatterino 2.
This fork mainly contains features that aren't accepted into Chatterino 2,
most notably 7TV subscriber features.
'';
homepage = "https://github.com/SevenTV/chatterino7";
license = licenses.mit;
maintainers = with maintainers; [notohh];
};
}