2010-06-21 01:48:59 +02:00
|
|
|
{ monolithic ? true # build monolithic Quassel
|
|
|
|
, daemon ? false # build Quassel daemon
|
|
|
|
, client ? false # build Quassel client
|
2010-10-05 20:08:45 +02:00
|
|
|
, withKDE ? true # enable KDE integration
|
2010-06-21 01:48:59 +02:00
|
|
|
, ssl ? true # enable SSL support
|
|
|
|
, previews ? false # enable webpage previews on hovering over URLs
|
2010-10-05 20:08:45 +02:00
|
|
|
, stdenv, fetchurl, cmake, qt4, kdelibs, automoc4, phonon }:
|
2010-06-21 01:48:59 +02:00
|
|
|
|
|
|
|
let
|
|
|
|
edf = flag: feature: [("-D" + feature + (if flag then "=ON" else "=OFF"))];
|
|
|
|
|
|
|
|
in with stdenv; mkDerivation rec {
|
|
|
|
|
2011-03-26 19:18:45 +01:00
|
|
|
name = "quassel-0.7.1";
|
2010-06-21 01:48:59 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://quassel-irc.org/pub/${name}.tar.bz2";
|
2011-03-26 19:18:45 +01:00
|
|
|
sha256 = "1kby1yikiv5bpzkdri5dq39pxnsj9gjrcv1gigvy2jzy3g99qjli";
|
2010-06-21 01:48:59 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ cmake qt4 ]
|
2010-10-05 20:08:45 +02:00
|
|
|
++ lib.optional withKDE kdelibs
|
|
|
|
++ lib.optional withKDE automoc4
|
|
|
|
++ lib.optional withKDE phonon;
|
2010-06-21 01:48:59 +02:00
|
|
|
|
|
|
|
cmakeFlags = [
|
|
|
|
"-DWITH_DBUS=OFF"
|
|
|
|
"-DWITH_LIBINDICATE=OFF"
|
|
|
|
"-DEMBED_DATA=OFF"
|
|
|
|
"-DSTATIC=OFF"
|
|
|
|
"-DWITH_PHONON=ON" ]
|
|
|
|
++ edf monolithic "WANT_MONO"
|
|
|
|
++ edf daemon "WANT_CORE"
|
|
|
|
++ edf client "WANT_QTCLIENT"
|
2010-10-05 20:08:45 +02:00
|
|
|
++ edf withKDE "WITH_KDE"
|
2010-06-21 01:48:59 +02:00
|
|
|
++ edf ssl "WITH_OPENSSL"
|
|
|
|
++ edf previews "WITH_WEBKIT" ;
|
|
|
|
|
2010-06-26 03:40:50 +02:00
|
|
|
meta = with stdenv.lib; {
|
2010-06-21 01:48:59 +02:00
|
|
|
homepage = http://quassel-irc.org/;
|
|
|
|
description = "Qt4/KDE4 distributed IRC client suppporting a remote daemon";
|
|
|
|
longDescription = ''
|
|
|
|
Quassel IRC is a cross-platform, distributed IRC client,
|
|
|
|
meaning that one (or multiple) client(s) can attach to
|
|
|
|
and detach from a central core -- much like the popular
|
|
|
|
combination of screen and a text-based IRC client such
|
2010-08-03 16:17:55 +02:00
|
|
|
as WeeChat, but graphical (based on Qt4/KDE4).
|
2010-06-21 01:48:59 +02:00
|
|
|
'';
|
|
|
|
license = "GPLv3";
|
2010-06-26 03:40:50 +02:00
|
|
|
maintainers = [ maintainers.phreedom ];
|
2010-08-03 16:17:55 +02:00
|
|
|
inherit (qt4.meta) platforms;
|
2010-06-21 01:48:59 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|