diff options
author | David Guibert | 2010-05-27 19:33:58 +0000 |
---|---|---|
committer | David Guibert | 2010-05-27 19:33:58 +0000 |
commit | 85a1936685bdef4c0c96bc7c4f32aa1c8e3c3744 (patch) | |
tree | d7f9311dbd1d7fc6f7a759a2a3b811ac38ddb822 /pkgs/os-specific | |
parent | 4e67eba80cd311ada515b94d410be236a6372a18 (diff) |
conky: compiled without X support, usefull with dwm.
svn path=/nixpkgs/trunk/; revision=22015
Diffstat (limited to 'pkgs/os-specific')
-rw-r--r-- | pkgs/os-specific/linux/conky/default.nix | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/os-specific/linux/conky/default.nix b/pkgs/os-specific/linux/conky/default.nix new file mode 100644 index 000000000000..29a81592c147 --- /dev/null +++ b/pkgs/os-specific/linux/conky/default.nix @@ -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 ]; + }; +} + |