Merge pull request #60747 from rexim/chatterino2
chatterino2: init at unstable-2019-05-11
This commit is contained in:
commit
39a1f3c8d3
|
@ -4131,6 +4131,11 @@
|
||||||
github = "retrry";
|
github = "retrry";
|
||||||
name = "Tadas Barzdžius";
|
name = "Tadas Barzdžius";
|
||||||
};
|
};
|
||||||
|
rexim = {
|
||||||
|
email = "reximkut@gmail.com";
|
||||||
|
github = "rexim";
|
||||||
|
name = "Alexey Kutepov";
|
||||||
|
};
|
||||||
rht = {
|
rht = {
|
||||||
email = "rhtbot@protonmail.com";
|
email = "rhtbot@protonmail.com";
|
||||||
github = "rht";
|
github = "rht";
|
||||||
|
|
|
@ -0,0 +1,28 @@
|
||||||
|
{ stdenv, pkgconfig, fetchFromGitHub, qtbase, qtsvg, qtmultimedia, qmake, boost, openssl }:
|
||||||
|
|
||||||
|
stdenv.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 stdenv.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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -20586,6 +20586,8 @@ in
|
||||||
xwayland = null;
|
xwayland = null;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
chatterino2 = libsForQt5.callPackage ../applications/networking/instant-messengers/chatterino2 {};
|
||||||
|
|
||||||
weston = callPackage ../applications/window-managers/weston {
|
weston = callPackage ../applications/window-managers/weston {
|
||||||
freerdp = freerdp_legacy;
|
freerdp = freerdp_legacy;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue