Adding KVIrc : a IRC Client for Qt and KDE. in kde4.kvirc

This commit is contained in:
Chaddaï Fouché 2013-10-29 23:18:53 +01:00
parent 9726dded27
commit 4c9349a2c1
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ stdenv, fetchurl, cmake, qt4, perl, gettext, kdelibs, openssl, zlib}:
let
pn = "kvirc";
v = "4.2.0";
in
stdenv.mkDerivation {
name = "${pn}-${v}";
src = fetchurl {
url = "ftp://ftp.kvirc.de/pub/${pn}/${v}/source/${pn}-${v}.tar.bz2";
sha256 = "9a547d52d804e39c9635c8dc58bccaf4d34341ef16a9a652a5eb5568d4d762cb";
};
buildInputs = [ cmake qt4 perl gettext kdelibs openssl zlib ];
meta = with stdenv.lib; {
description = "Graphic IRC client with Qt";
license = "GPL";
homepage = http://www.kvirc.net/;
platforms = with stdenv.lib.platforms; linux;
};
}

View File

@ -9557,6 +9557,8 @@ let
konversation = callPackage ../applications/networking/irc/konversation { };
kvirc = callPackage ../applications/networking/irc/kvirc { };
krename = callPackage ../applications/misc/krename { };
krusader = callPackage ../applications/misc/krusader { };