Adding KVIrc : a IRC Client for Qt and KDE. in kde4.kvirc
This commit is contained in:
parent
9726dded27
commit
4c9349a2c1
24
pkgs/applications/networking/irc/kvirc/default.nix
Normal file
24
pkgs/applications/networking/irc/kvirc/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user