conky: compiled without X support, usefull with dwm.

svn path=/nixpkgs/trunk/; revision=22015
This commit is contained in:
David Guibert 2010-05-27 19:33:58 +00:00
parent 4e67eba80c
commit 85a1936685
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,20 @@
{stdenv, fetchurl, pkgconfig, libxml2, curl, wirelesstools, glib, openssl}:
stdenv.mkDerivation {
name = "conky-1.7.2";
src = fetchurl {
url = "mirror://sourceforge/conky/conky-1.7.2.tar.bz2";
sha256 = "0p375id2saxm2bp6c33ddn9d6rxymmq60ajlvx49smwhzyqa3h5k";
};
buildInputs = [ pkgconfig libxml2 curl wirelesstools glib openssl ];
configureFlags = "--disable-x11 --disable-xdamage --disable-own-window --disable-xft --disable-lua --enable-mpd --enable-double-buffer --enable-proc-uptime --enable-seti --enable-wlan --enable-rss";
meta = {
homepage = http://conky.sourceforge.net/;
description = "Conky is an advanced, highly configurable system monitor complied without X based on torsmo";
maintainers = [ stdenv.lib.maintainers.guibert ];
};
}

View File

@ -5992,6 +5992,11 @@ let
inherit fetchurl stdenv autoconf automake; inherit fetchurl stdenv autoconf automake;
}; };
conky = import ../os-specific/linux/conky {
inherit stdenv fetchurl pkgconfig libxml2 curl wirelesstools openssl;
inherit (gtkLibs) glib;
};
cpufrequtils = ( cpufrequtils = (
import ../os-specific/linux/cpufrequtils { import ../os-specific/linux/cpufrequtils {
inherit fetchurl stdenv libtool gettext; inherit fetchurl stdenv libtool gettext;