summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/chatterino2/default.nix
blob: 787d66826ef1a6f11aa784e46bba2e8a30501221 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ mkDerivation, lib, pkgconfig, fetchFromGitHub, qtbase, qtsvg, qtmultimedia, qmake, boost, openssl }:

mkDerivation rec {
  pname = "chatterino2";
  version = "unstable-2019-05-11";
  src = fetchFromGitHub {
    owner = "fourtf";
    repo = pname;
    rev = "8c46cbf571dc8fd77287bf3186445ff52b1d1aaf";
    sha256 = "0i2385hamhd9i7jdy906cfrd81cybw524j92l87c8pzrkxphignk";
    fetchSubmodules = true;
  };
  nativeBuildInputs = [ qmake pkgconfig ];
  buildInputs = [ qtbase qtsvg qtmultimedia boost openssl ];
  meta = with lib; {
    description = "A chat client for Twitch chat";
    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/fourtf/chatterino2";
    license = licenses.mit;
    platforms = platforms.unix;
    maintainers = with maintainers; [ rexim ];
  };
}