mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-10-31 22:51:22 +00:00
conky: compiled without X support, usefull with dwm.
svn path=/nixpkgs/trunk/; revision=22015
This commit is contained in:
parent
4e67eba80c
commit
85a1936685
20
pkgs/os-specific/linux/conky/default.nix
Normal file
20
pkgs/os-specific/linux/conky/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
||||
|
@ -5992,6 +5992,11 @@ let
|
||||
inherit fetchurl stdenv autoconf automake;
|
||||
};
|
||||
|
||||
conky = import ../os-specific/linux/conky {
|
||||
inherit stdenv fetchurl pkgconfig libxml2 curl wirelesstools openssl;
|
||||
inherit (gtkLibs) glib;
|
||||
};
|
||||
|
||||
cpufrequtils = (
|
||||
import ../os-specific/linux/cpufrequtils {
|
||||
inherit fetchurl stdenv libtool gettext;
|
||||
|
Loading…
Reference in New Issue
Block a user