about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--pkgs/applications/networking/irc/quassel/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/networking/irc/quassel/default.nix b/pkgs/applications/networking/irc/quassel/default.nix
index eadf4525e1f8..ca583c52ed12 100644
--- a/pkgs/applications/networking/irc/quassel/default.nix
+++ b/pkgs/applications/networking/irc/quassel/default.nix
@@ -38,7 +38,7 @@ in with stdenv; mkDerivation rec {
     ++ edf ssl "WITH_OPENSSL"
     ++ edf previews "WITH_WEBKIT"  ;
 
-  meta = {
+  meta = with stdenv.lib; {
     homepage = http://quassel-irc.org/;
     description = "Qt4/KDE4 distributed IRC client suppporting a remote daemon";
     longDescription = ''
@@ -49,8 +49,8 @@ in with stdenv; mkDerivation rec {
       as WeeChat, but graphical(based on Qt4/KDE4).
     '';
     license = "GPLv3";
-    maintainers = [ stdenv.lib.maintainers.phreedom ];
+    maintainers = [ maintainers.phreedom ];
+    platforms = platforms.all;
   };
-
 }