Skip to content

Commit

Permalink
Merge pull request #69259 from suhr/kvirc
Browse files Browse the repository at this point in the history
kvirc: use qt5.mkDerivation
  • Loading branch information
Mic92 authored Sep 23, 2019
2 parents 57649e8 + fa435f2 commit 043ce50
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkgs/applications/networking/irc/kvirc/default.nix
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{ stdenv, fetchFromGitHub
{ lib, mkDerivation, fetchFromGitHub
, qtbase, qtmultimedia, qtsvg, qtx11extras
, pkgconfig, cmake, gettext
}:

stdenv.mkDerivation rec {
mkDerivation rec {
pname = "kvirc";
version = "5.0.0";

Expand All @@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
pkgconfig cmake gettext
];

meta = with stdenv.lib; {
meta = with lib; {
description = "Advanced IRC Client";
homepage = "http://www.kvirc.net/";
license = licenses.gpl2;
Expand Down

0 comments on commit 043ce50

Please sign in to comment.