Skip to content

Commit

Permalink
chatterino2: use mkDerivation from qt
Browse files Browse the repository at this point in the history
  • Loading branch information
thefloweringash committed Jan 22, 2020
1 parent a61db03 commit 7e0dd38
Showing 1 changed file with 3 additions and 3 deletions.
@@ -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 7e0dd38

Please sign in to comment.