From dd367c87eab125d83875e98e27489191d60cd735 Mon Sep 17 00:00:00 2001 From: Kei Yamashita Date: Fri, 6 May 2016 17:24:44 -0400 Subject: [PATCH] gnu: Add wmfire. * gnu/packages/gnustep.scm (wmfire): New variable. --- gnu/packages/gnustep.scm | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/gnu/packages/gnustep.scm b/gnu/packages/gnustep.scm index f4a2b26..20306b1 100644 --- a/gnu/packages/gnustep.scm +++ b/gnu/packages/gnustep.scm @@ -24,6 +24,7 @@ #:use-module (guix licenses) #:use-module (gnu packages xorg) #:use-module (gnu packages gnome) + #:use-module (gnu packages gtk) #:use-module (gnu packages texinfo) #:use-module (gnu packages autotools) #:use-module (gnu packages glib) @@ -216,3 +217,32 @@ on.") a dockable tile. It features multiple language support, 24h or 12h time display, and can run a user-specified program on mouse click.") (license gpl2+))) + +(define-public wmfire + (package + (name "wmfire") + (version "1.2.4") + (source (origin + (method url-fetch) + (uri (string-append "http://www.improbability.net/" + name "/" name "-" version ".tar.gz")) + (sha256 + (base32 + "101grahd80n97y2dczb629clmcgiavdpbbwy78kk5wgs362m12z3")))) + (build-system gnu-build-system) + (inputs + `(("gtk+" ,gtk+-2) + ("libgtop" ,libgtop))) + (native-inputs + `(("autoconf" ,autoconf) + ("automake" ,automake) + ("pkg-config" ,pkg-config))) + (home-page "http://www.improbability.net/") + (synopsis "Displays flames to monitor CPU, memory, etc.") + (description + "This applet can monitor the average cpu load, or individual cpu load on +SMP computers. Additionally it can monitor the memory, network load, a file or +just be set to show a pretty flame. On entering the dock a burning spot +replaces the cursor, and after two seconds symbols to represent the current +monitor are \"burnt\" onscreen. The flame colour can also be changed.") + (license gpl2+))) -- 2.7.4