about summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/chatterino2
diff options
context:
space:
mode:
authorrexim <reximkut@gmail.com>2019-05-11 05:31:30 +0700
committerAaron Andersen <aaron@fosslib.net>2019-05-10 21:03:48 -0400
commit79586cae40bb893f3b1ef056cb353afe03961ac9 (patch)
tree699c1f121ad80bb1ecbd18fb96b4dbc7aadc73be /pkgs/applications/networking/instant-messengers/chatterino2
parentccfe8ec455c02ba509f291a42f7616480c467fa3 (diff)
chatterino2: init at unstable-2019-05-11
Diffstat (limited to 'pkgs/applications/networking/instant-messengers/chatterino2')
-rw-r--r--pkgs/applications/networking/instant-messengers/chatterino2/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/applications/networking/instant-messengers/chatterino2/default.nix b/pkgs/applications/networking/instant-messengers/chatterino2/default.nix
new file mode 100644
index 0000000000000..becf828a85679
--- /dev/null
+++ b/pkgs/applications/networking/instant-messengers/chatterino2/default.nix
@@ -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 ];
+  };
+}