about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorEvgeny Egorochkin <phreedom.stdin@gmail.com>2010-06-26 01:40:50 +0000
committerEvgeny Egorochkin <phreedom.stdin@gmail.com>2010-06-26 01:40:50 +0000
commit37345d1fb8bff063c665ce3f126ee995e8ed8781 (patch)
tree3db4133619a3e3f055c98ee8ceea2dbfa4ffeef1 /pkgs/applications
parent877d8a6f2717dec15a67a235749cfa050ba2ed0b (diff)
downloadnixlib-37345d1fb8bff063c665ce3f126ee995e8ed8781.tar
nixlib-37345d1fb8bff063c665ce3f126ee995e8ed8781.tar.gz
nixlib-37345d1fb8bff063c665ce3f126ee995e8ed8781.tar.bz2
nixlib-37345d1fb8bff063c665ce3f126ee995e8ed8781.tar.lz
nixlib-37345d1fb8bff063c665ce3f126ee995e8ed8781.tar.xz
nixlib-37345d1fb8bff063c665ce3f126ee995e8ed8781.tar.zst
nixlib-37345d1fb8bff063c665ce3f126ee995e8ed8781.zip
Make Hydra compile Quassel
svn path=/nixpkgs/trunk/; revision=22418
Diffstat (limited to 'pkgs/applications')
-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;
   };
-
 }