Skip to content

Commit

Permalink
chatterino2: use mkDerivation from qt
Browse files Browse the repository at this point in the history
(cherry picked from commit 7e0dd38)
  • Loading branch information
thefloweringash authored and worldofpeace committed Jan 22, 2020
1 parent ada9712 commit ffa8d53
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{ stdenv, pkgconfig, fetchFromGitHub, qtbase, qtsvg, qtmultimedia, qmake, boost, openssl }:
{ mkDerivation, lib, pkgconfig, fetchFromGitHub, qtbase, qtsvg, qtmultimedia, qmake, boost, openssl }:

stdenv.mkDerivation rec {
mkDerivation rec {
pname = "chatterino2";
version = "unstable-2019-05-11";
src = fetchFromGitHub {
Expand All @@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ qmake pkgconfig ];
buildInputs = [ qtbase qtsvg qtmultimedia boost openssl ];
meta = with stdenv.lib; {
meta = with lib; {
description = "A chat client for Twitch chat";
longDescription = ''
Chatterino is a chat client for Twitch chat. It aims to be an
Expand Down

0 comments on commit ffa8d53

Please sign in to comment.