Merge pull request #69259 from suhr/kvirc

kvirc: use qt5.mkDerivation
This commit is contained in:
Jörg Thalheim 2019-09-23 07:53:12 +01:00 committed by GitHub
commit 043ce505a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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";
@ -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;