2010-06-21 00:48:59 +01:00
|
|
|
{ monolithic ? true # build monolithic Quassel
|
|
|
|
, daemon ? false # build Quassel daemon
|
|
|
|
, client ? false # build Quassel client
|
|
|
|
, previews ? false # enable webpage previews on hovering over URLs
|
2013-12-05 22:29:23 +00:00
|
|
|
, tag ? "" # tag added to the package name
|
2015-07-27 19:50:39 +01:00
|
|
|
, useQt5 ? false, phonon_qt5, libdbusmenu_qt5, qca-qt5
|
|
|
|
, withKDE ? stdenv.isLinux # enable KDE integration
|
|
|
|
, kf5 ? null, kdelibs ? null
|
2014-10-25 00:39:37 +01:00
|
|
|
|
2015-07-27 19:50:39 +01:00
|
|
|
, stdenv, fetchurl, cmake, makeWrapper, qt, automoc4, phonon, dconf, qca2 }:
|
|
|
|
|
|
|
|
let useKF5 = useQt5 && withKDE;
|
|
|
|
useKDE4 = withKDE && !useQt5;
|
|
|
|
buildClient = monolithic || client;
|
|
|
|
buildCore = monolithic || daemon;
|
|
|
|
in
|
2015-05-10 12:44:50 +01:00
|
|
|
|
|
|
|
assert stdenv.isLinux;
|
|
|
|
|
2014-10-25 00:39:37 +01:00
|
|
|
assert monolithic -> !client && !daemon;
|
|
|
|
assert client || daemon -> !monolithic;
|
2015-07-27 19:50:39 +01:00
|
|
|
assert useKDE4 -> kdelibs != null;
|
|
|
|
assert useKF5 -> kf5 != null;
|
|
|
|
assert !buildClient -> !withKDE; # KDE is used by the client only
|
2010-06-21 00:48:59 +01:00
|
|
|
|
|
|
|
let
|
|
|
|
edf = flag: feature: [("-D" + feature + (if flag then "=ON" else "=OFF"))];
|
|
|
|
|
|
|
|
in with stdenv; mkDerivation rec {
|
|
|
|
|
2015-04-27 20:52:17 +01:00
|
|
|
version = "0.12.2";
|
2013-12-05 22:29:23 +00:00
|
|
|
name = "quassel${tag}-${version}";
|
2010-06-21 00:48:59 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-12-05 22:29:23 +00:00
|
|
|
url = "http://quassel-irc.org/pub/quassel-${version}.tar.bz2";
|
2015-04-27 20:52:17 +01:00
|
|
|
sha256 = "15vqjiw38mifvnc95bhvy0zl23xxldkwg2byx9xqbyw8rfgggmkb";
|
2010-06-21 00:48:59 +01:00
|
|
|
};
|
|
|
|
|
2013-12-05 22:29:23 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2015-07-27 19:50:39 +01:00
|
|
|
buildInputs =
|
|
|
|
[ cmake makeWrapper ]
|
|
|
|
++ [(if useQt5 then qt.base else qt)]
|
|
|
|
++ lib.optionals buildCore (if useQt5 then [qt.script qca-qt5] else [qca2])
|
|
|
|
++ lib.optionals buildClient
|
|
|
|
( lib.optionals (previews && useQt5) [qt.webkit qt.webkitwidgets]
|
|
|
|
++ lib.optionals useQt5 [libdbusmenu_qt5 phonon_qt5]
|
|
|
|
++ lib.optionals useKDE4 [automoc4 kdelibs phonon]
|
|
|
|
++ lib.optionals useKF5
|
|
|
|
(with kf5; [
|
|
|
|
extra-cmake-modules kconfigwidgets kcoreaddons
|
|
|
|
knotifications knotifyconfig ktextwidgets kwidgetsaddons
|
|
|
|
kxmlgui
|
|
|
|
])
|
|
|
|
);
|
2010-06-21 00:48:59 +01:00
|
|
|
|
|
|
|
cmakeFlags = [
|
|
|
|
"-DEMBED_DATA=OFF"
|
2015-01-19 17:12:46 +00:00
|
|
|
"-DSTATIC=OFF" ]
|
2010-06-21 00:48:59 +01:00
|
|
|
++ edf monolithic "WANT_MONO"
|
|
|
|
++ edf daemon "WANT_CORE"
|
|
|
|
++ edf client "WANT_QTCLIENT"
|
2010-10-05 19:08:45 +01:00
|
|
|
++ edf withKDE "WITH_KDE"
|
2015-01-19 17:12:46 +00:00
|
|
|
++ edf previews "WITH_WEBKIT"
|
|
|
|
++ edf useQt5 "USE_QT5";
|
2010-06-21 00:48:59 +01:00
|
|
|
|
2014-07-28 14:46:48 +01:00
|
|
|
preFixup =
|
2015-07-27 19:50:39 +01:00
|
|
|
lib.optionalString buildClient ''
|
|
|
|
wrapProgram "$out/bin/quassel${lib.optionalString client "client"}" \
|
2014-07-28 14:46:48 +01:00
|
|
|
--prefix GIO_EXTRA_MODULES : "${dconf}/lib/gio/modules"
|
|
|
|
'';
|
2014-07-03 22:19:15 +01:00
|
|
|
|
2010-06-26 02:40:50 +01:00
|
|
|
meta = with stdenv.lib; {
|
2010-06-21 00:48:59 +01:00
|
|
|
homepage = http://quassel-irc.org/;
|
2015-07-27 19:50:39 +01:00
|
|
|
description = "Qt/KDE distributed IRC client suppporting a remote daemon";
|
2010-06-21 00:48:59 +01:00
|
|
|
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
|
2015-07-27 19:50:39 +01:00
|
|
|
as WeeChat, but graphical (based on Qt4/KDE4 or Qt5/KF5).
|
2010-06-21 00:48:59 +01:00
|
|
|
'';
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl3;
|
2015-02-21 16:57:50 +00:00
|
|
|
maintainers = with maintainers; [ phreedom ttuegel ];
|
2013-09-16 23:41:35 +01:00
|
|
|
repositories.git = https://github.com/quassel/quassel.git;
|
2015-02-21 16:57:50 +00:00
|
|
|
inherit ((if useQt5 then qt.base else qt).meta) platforms;
|
2010-06-21 00:48:59 +01:00
|
|
|
};
|
|
|
|
}
|