50 lines
1.6 KiB
Nix
50 lines
1.6 KiB
Nix
|
{ stdenv, lib, cmake, pkg-config, fetchFromGitHub, qt6, boost, openssl, libsecret }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "chatterino2";
|
||
|
version = "2.5.1";
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "Chatterino";
|
||
|
repo = pname;
|
||
|
rev = "v${version}";
|
||
|
hash = "sha256-c3Vhzes54xLjKV0Of7D1eFpQvIWJwcUBXvLT2p6VwBE=";
|
||
|
fetchSubmodules = true;
|
||
|
};
|
||
|
nativeBuildInputs = [ cmake pkg-config qt6.wrapQtAppsHook ];
|
||
|
buildInputs = [
|
||
|
qt6.qtbase
|
||
|
qt6.qtsvg
|
||
|
qt6.qtimageformats
|
||
|
qt6.qttools
|
||
|
qt6.qt5compat
|
||
|
boost
|
||
|
openssl
|
||
|
libsecret
|
||
|
] ++ lib.optionals stdenv.hostPlatform.isLinux [
|
||
|
qt6.qtwayland
|
||
|
];
|
||
|
cmakeFlags = [ "-DBUILD_WITH_QT6=ON" ];
|
||
|
postInstall = lib.optionalString stdenv.hostPlatform.isDarwin ''
|
||
|
mkdir -p "$out/Applications"
|
||
|
mv bin/chatterino.app "$out/Applications/"
|
||
|
'' + ''
|
||
|
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 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/master/CHANGELOG.md";
|
||
|
license = licenses.mit;
|
||
|
platforms = platforms.unix;
|
||
|
maintainers = with maintainers; [ rexim supa ];
|
||
|
};
|
||
|
}
|