nixpkgs/pkgs/applications/networking/irc/quassel/default.nix

75 lines
2.3 KiB
Nix
Raw Normal View History

{ 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
, withKDE ? stdenv.isLinux # enable KDE integration
2015-09-27 15:16:37 +00:00
, kdelibs ? null
2014-10-24 23:39:37 +00:00
, stdenv, fetchurl, cmake, makeWrapper, qt, automoc4, phonon, dconf, qca2 }:
2015-09-27 15:16:37 +00:00
let buildClient = monolithic || client;
buildCore = monolithic || daemon;
in
2015-05-10 11:44:50 +00:00
assert stdenv.isLinux;
2014-10-24 23:39:37 +00:00
assert monolithic -> !client && !daemon;
assert client || daemon -> !monolithic;
2015-09-27 15:16:37 +00:00
assert withKDE -> kdelibs != null;
assert !buildClient -> !withKDE; # KDE is used by the client only
let
edf = flag: feature: [("-D" + feature + (if flag then "=ON" else "=OFF"))];
in with stdenv; mkDerivation rec {
2015-04-27 19:52:17 +00:00
version = "0.12.2";
2013-12-05 22:29:23 +00:00
name = "quassel${tag}-${version}";
src = fetchurl {
2013-12-05 22:29:23 +00:00
url = "http://quassel-irc.org/pub/quassel-${version}.tar.bz2";
2015-04-27 19:52:17 +00:00
sha256 = "15vqjiw38mifvnc95bhvy0zl23xxldkwg2byx9xqbyw8rfgggmkb";
};
2013-12-05 22:29:23 +00:00
enableParallelBuilding = true;
buildInputs =
2015-09-27 15:16:37 +00:00
[ cmake makeWrapper qt ]
++ lib.optionals buildCore [qca2]
++ lib.optionals withKDE [automoc4 kdelibs phonon];
NIX_CFLAGS_COMPILE = "-fPIC";
cmakeFlags = [
"-DEMBED_DATA=OFF"
2015-01-19 17:12:46 +00:00
"-DSTATIC=OFF" ]
++ edf monolithic "WANT_MONO"
++ edf daemon "WANT_CORE"
++ edf client "WANT_QTCLIENT"
++ edf withKDE "WITH_KDE"
2015-09-27 15:16:37 +00:00
++ edf previews "WITH_WEBKIT";
preFixup =
lib.optionalString buildClient ''
wrapProgram "$out/bin/quassel${lib.optionalString client "client"}" \
--prefix GIO_EXTRA_MODULES : "${dconf}/lib/gio/modules"
'';
meta = with stdenv.lib; {
homepage = http://quassel-irc.org/;
description = "Qt/KDE 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
as WeeChat, but graphical (based on Qt4/KDE4 or Qt5/KF5).
'';
license = stdenv.lib.licenses.gpl3;
2015-02-21 16:57:50 +00:00
maintainers = with maintainers; [ phreedom ttuegel ];
2013-09-16 22:41:35 +00:00
repositories.git = https://github.com/quassel/quassel.git;
2015-09-27 15:16:37 +00:00
inherit (qt.meta) platforms;
};
}