mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 05:00:16 +00:00
Pidgin needs libXScrnSaver to make the automatic status changes work
(without this library it will always switch to Away after 5 minutes and never make you Available again) Build pidgin for release Don't build Gaim for release svn path=/nixpkgs/trunk/; revision=8661
This commit is contained in:
parent
93393a6748
commit
109a74d558
|
@ -12,7 +12,8 @@
|
||||||
*/
|
*/
|
||||||
{ stdenv, fetchurl, pkgconfig, glib, gtk, gtkspell, aspell,
|
{ stdenv, fetchurl, pkgconfig, glib, gtk, gtkspell, aspell,
|
||||||
GStreamer, startupnotification, gettext,
|
GStreamer, startupnotification, gettext,
|
||||||
perl, perlXMLParser, libxml2, openssl, nss
|
perl, perlXMLParser, libxml2, openssl, nss,
|
||||||
|
libXScrnSaver
|
||||||
} :
|
} :
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
|
@ -28,5 +29,6 @@ stdenv.mkDerivation {
|
||||||
pkgconfig glib gtk gtkspell aspell
|
pkgconfig glib gtk gtkspell aspell
|
||||||
GStreamer startupnotification gettext
|
GStreamer startupnotification gettext
|
||||||
perl perlXMLParser libxml2 openssl nss
|
perl perlXMLParser libxml2 openssl nss
|
||||||
|
libXScrnSaver
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -2681,6 +2681,7 @@ rec {
|
||||||
inherit fetchurl stdenv pkgconfig perl perlXMLParser libxml2 openssl nss gtkspell GStreamer aspell gettext;
|
inherit fetchurl stdenv pkgconfig perl perlXMLParser libxml2 openssl nss gtkspell GStreamer aspell gettext;
|
||||||
inherit (gtkLibs) glib gtk;
|
inherit (gtkLibs) glib gtk;
|
||||||
inherit (gnome) startupnotification;
|
inherit (gnome) startupnotification;
|
||||||
|
inherit (xlibs) libXScrnSaver;
|
||||||
};
|
};
|
||||||
|
|
||||||
gimp = import ../applications/graphics/gimp {
|
gimp = import ../applications/graphics/gimp {
|
||||||
|
|
|
@ -51,7 +51,6 @@ let {
|
||||||
findutils
|
findutils
|
||||||
firefoxWrapper
|
firefoxWrapper
|
||||||
flex2533
|
flex2533
|
||||||
gaim
|
|
||||||
gawk
|
gawk
|
||||||
gcc
|
gcc
|
||||||
gcc34
|
gcc34
|
||||||
|
@ -115,6 +114,7 @@ let {
|
||||||
pciutils
|
pciutils
|
||||||
perl
|
perl
|
||||||
php
|
php
|
||||||
|
pidgin
|
||||||
pkgconfig
|
pkgconfig
|
||||||
postgresql
|
postgresql
|
||||||
postgresql_jdbc
|
postgresql_jdbc
|
||||||
|
|
Loading…
Reference in a new issue