lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v192 24 lines 588 B view raw
1{ stdenv, fetchurl, cmake, qt4, perl, gettext, kdelibs, openssl, zlib}: 2 3let 4 pn = "kvirc"; 5 v = "4.2.0"; 6in 7 8stdenv.mkDerivation { 9 name = "${pn}-${v}"; 10 11 src = fetchurl { 12 url = "ftp://ftp.kvirc.de/pub/${pn}/${v}/source/${pn}-${v}.tar.bz2"; 13 sha256 = "9a547d52d804e39c9635c8dc58bccaf4d34341ef16a9a652a5eb5568d4d762cb"; 14 }; 15 16 buildInputs = [ cmake qt4 perl gettext kdelibs openssl zlib ]; 17 18 meta = with stdenv.lib; { 19 description = "Graphic IRC client with Qt"; 20 license = licenses.gpl3; 21 homepage = http://www.kvirc.net/; 22 platforms = platforms.linux; 23 }; 24}