2010-06-21 00:48:59 +01:00
|
|
|
{ monolithic ? true # build monolithic Quassel
|
2019-09-23 01:14:05 +01:00
|
|
|
, enableDaemon ? false # build Quassel daemon
|
2010-06-21 00:48:59 +01:00
|
|
|
, client ? false # build Quassel client
|
2019-02-03 15:30:44 +00:00
|
|
|
, tag ? "-kf5" # tag added to the package name
|
2016-03-10 14:17:07 +00:00
|
|
|
, static ? false # link statically
|
2014-10-25 00:39:37 +01:00
|
|
|
|
2018-12-29 16:23:36 +00:00
|
|
|
, stdenv, fetchFromGitHub, cmake, makeWrapper, dconf
|
2019-08-30 05:22:16 +01:00
|
|
|
, mkDerivation, qtbase, qtscript
|
2017-02-18 18:07:27 +00:00
|
|
|
, phonon, libdbusmenu, qca-qt5
|
|
|
|
|
2019-02-03 15:30:44 +00:00
|
|
|
, withKDE ? true # enable KDE integration
|
2017-02-18 18:07:27 +00:00
|
|
|
, extra-cmake-modules
|
|
|
|
, kconfigwidgets
|
|
|
|
, kcoreaddons
|
|
|
|
, knotifications
|
|
|
|
, knotifyconfig
|
|
|
|
, ktextwidgets
|
|
|
|
, kwidgetsaddons
|
|
|
|
, kxmlgui
|
|
|
|
}:
|
2015-07-27 19:50:39 +01:00
|
|
|
|
2017-02-18 18:07:27 +00:00
|
|
|
let
|
2019-08-30 05:22:16 +01:00
|
|
|
inherit (stdenv) lib;
|
2017-02-18 18:07:27 +00:00
|
|
|
buildClient = monolithic || client;
|
2019-09-23 01:14:05 +01:00
|
|
|
buildCore = monolithic || enableDaemon;
|
2015-07-27 19:50:39 +01:00
|
|
|
in
|
2015-05-10 12:44:50 +01:00
|
|
|
|
2019-09-23 01:14:05 +01:00
|
|
|
assert monolithic -> !client && !enableDaemon;
|
|
|
|
assert client || enableDaemon -> !monolithic;
|
2015-07-27 19:50:39 +01:00
|
|
|
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"))];
|
|
|
|
|
2019-08-30 05:22:16 +01:00
|
|
|
in (if !buildClient then stdenv.mkDerivation else mkDerivation) rec {
|
2013-12-05 22:29:23 +00:00
|
|
|
name = "quassel${tag}-${version}";
|
2019-03-15 19:37:39 +00:00
|
|
|
version = "0.13.1";
|
2018-12-29 16:23:36 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "quassel";
|
|
|
|
repo = "quassel";
|
|
|
|
rev = version;
|
2019-03-15 19:37:39 +00:00
|
|
|
sha256 = "0z8p7iv90yrrjbh31cyxhpr6hsynfmi23rlayn7p2f6ki5az7yc3";
|
2018-12-29 16:23:36 +00:00
|
|
|
};
|
2010-06-21 00:48:59 +01:00
|
|
|
|
2013-12-05 22:29:23 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2017-02-18 18:07:27 +00:00
|
|
|
# Prevent ``undefined reference to `qt_version_tag''' in SSL check
|
|
|
|
NIX_CFLAGS_COMPILE = [ "-DQT_NO_VERSION_TAGGING=1" ];
|
2010-06-21 00:48:59 +01:00
|
|
|
|
2017-02-18 18:07:27 +00:00
|
|
|
buildInputs =
|
|
|
|
[ cmake makeWrapper qtbase ]
|
|
|
|
++ lib.optionals buildCore [qtscript qca-qt5]
|
|
|
|
++ lib.optionals buildClient [libdbusmenu phonon]
|
|
|
|
++ lib.optionals (buildClient && withKDE) [
|
|
|
|
extra-cmake-modules kconfigwidgets kcoreaddons
|
|
|
|
knotifications knotifyconfig ktextwidgets kwidgetsaddons
|
|
|
|
kxmlgui
|
|
|
|
];
|
2015-09-20 00:05:38 +01:00
|
|
|
|
2010-06-21 00:48:59 +01:00
|
|
|
cmakeFlags = [
|
2017-02-18 18:07:27 +00:00
|
|
|
"-DEMBED_DATA=OFF"
|
|
|
|
"-DUSE_QT5=ON"
|
|
|
|
]
|
2016-03-10 14:17:07 +00:00
|
|
|
++ edf static "STATIC"
|
2010-06-21 00:48:59 +01:00
|
|
|
++ edf monolithic "WANT_MONO"
|
2019-09-23 01:14:05 +01:00
|
|
|
++ edf enableDaemon "WANT_CORE"
|
2010-06-21 00:48:59 +01:00
|
|
|
++ edf client "WANT_QTCLIENT"
|
2017-02-18 18:07:27 +00:00
|
|
|
++ edf withKDE "WITH_KDE";
|
2010-06-21 00:48:59 +01:00
|
|
|
|
2019-08-30 05:22:16 +01:00
|
|
|
dontWrapQtApps = true;
|
|
|
|
|
|
|
|
postFixup =
|
2019-09-23 01:14:05 +01:00
|
|
|
lib.optionalString enableDaemon ''
|
2019-08-30 05:22:16 +01:00
|
|
|
wrapProgram "$out/bin/quasselcore" --suffix PATH : "${qtbase.bin}/bin"
|
2017-09-29 15:53:56 +01:00
|
|
|
'' +
|
2015-07-27 19:50:39 +01:00
|
|
|
lib.optionalString buildClient ''
|
2019-08-30 05:22:16 +01:00
|
|
|
wrapQtApp "$out/bin/quassel${lib.optionalString client "client"}" \
|
|
|
|
--prefix GIO_EXTRA_MODULES : "${dconf}/lib/gio/modules"
|
2014-07-28 14:46:48 +01:00
|
|
|
'';
|
2014-07-03 22:19:15 +01:00
|
|
|
|
2010-06-26 02:40:50 +01:00
|
|
|
meta = with stdenv.lib; {
|
2018-01-05 19:42:46 +00:00
|
|
|
homepage = https://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
|
|
|
'';
|
2018-12-29 16:23:36 +00:00
|
|
|
license = 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;
|
2017-02-18 18:07:27 +00:00
|
|
|
inherit (qtbase.meta) platforms;
|
2010-06-21 00:48:59 +01:00
|
|
|
};
|
|
|
|
}
|