Compare commits

..

No commits in common. "9d4436187eae1048865f5a9201ba122378a9246d" and "8ede20a5f26260c976993cf8eec19b96d705bb88" have entirely different histories.

2 changed files with 27 additions and 26 deletions

View file

@ -49,7 +49,7 @@
osu-lazer-bin osu-lazer-bin
runelite runelite
prismlauncher prismlauncher
(libsForQt5.callPackage ../../pkgs/chatterino7 {}) (callPackage ../../pkgs/chatterino7 {})
(callPackage ../../pkgs/jellyfin-rpc {}) (callPackage ../../pkgs/jellyfin-rpc {})
]; ];

View file

@ -1,35 +1,30 @@
{ {
stdenv, stdenv,
lib,
cmake, cmake,
pkg-config, pkgs,
fetchFromGitHub, lib,
qtbase, makeDesktopItem,
qtsvg,
qtmultimedia,
qtimageformats,
qttools,
boost,
openssl,
wrapQtAppsHook,
libsecret,
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "chatterino7"; pname = "chatterino7";
version = "7.4.6"; version = "7.4.6";
src = pkgs.fetchFromGitHub {
src = fetchFromGitHub {
owner = "SevenTV"; owner = "SevenTV";
repo = pname; repo = pname;
rev = "v${version}"; rev = "9fd5cf1cb2b2f1c5c6e67d3428ed4a578e13ed9f";
sha256 = "sha256-WFmv15rZPnTFruoYpXHUBj1NduppNE3dt5S/ArWL1Wg="; sha256 = "sha256-WFmv15rZPnTFruoYpXHUBj1NduppNE3dt5S/ArWL1Wg=";
fetchSubmodules = true; fetchSubmodules = true;
}; };
nativeBuildInputs = with pkgs; [cmake pkg-config libsForQt5.qt5.wrapQtAppsHook];
nativeBuildInputs = [cmake pkg-config wrapQtAppsHook]; buildInputs = with pkgs; [libsForQt5.qt5.qtbase libsForQt5.qt5.qtsvg libsForQt5.qt5.qtmultimedia libsForQt5.qt5.qtimageformats libsForQt5.qt5.qttools boost openssl libsecret];
buildInputs = [qtbase qtsvg qtmultimedia qtimageformats qttools boost openssl libsecret]; configurationPhase = ''
mkdir build && cd build
postInstall = cmake ..
'';
buildPhase = ''
make
'';
installPhase =
'' ''
mkdir -p "$out/bin" mkdir -p "$out/bin"
cp "bin/chatterino" "$out/bin" cp "bin/chatterino" "$out/bin"
@ -38,13 +33,19 @@ stdenv.mkDerivation rec {
mkdir -p $out/share/icons/hicolor/256x256/apps mkdir -p $out/share/icons/hicolor/256x256/apps
cp $src/resources/icon.png $out/share/icons/hicolor/256x256/apps/chatterino.png cp $src/resources/icon.png $out/share/icons/hicolor/256x256/apps/chatterino.png
''; '';
postFixup = ''
mkdir -p $out/share/applications
ln -s ${desktopFile}/share/applications/* $out/share/applications
'';
desktopFile = makeDesktopItem {
name = "Chatterino7";
desktopName = "Chatterino7";
exec = "chatterino";
icon = "chatterino";
comment = meta.description;
};
meta = with lib; { meta = with lib; {
description = "Chat client for twitch.tv"; 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"; homepage = "https://github.com/SevenTV/chatterino7";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [notohh]; maintainers = with maintainers; [notohh];