mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 06:06:53 -05:00
gnu: Add xfce4-taskmanager.
* gnu/packages/xfce.scm (xfce4-taskmanager): Add variable.
This commit is contained in:
parent
f79ee25f32
commit
f674439433
1 changed files with 26 additions and 0 deletions
|
@ -789,3 +789,29 @@ (define-public ristretto
|
||||||
images with other applications like an image-editor or configure an image as
|
images with other applications like an image-editor or configure an image as
|
||||||
the desktop wallpaper.")
|
the desktop wallpaper.")
|
||||||
(license gpl2+)))
|
(license gpl2+)))
|
||||||
|
|
||||||
|
(define-public xfce4-taskmanager
|
||||||
|
(package
|
||||||
|
(name "xfce4-taskmanager")
|
||||||
|
(version "1.1.0")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "http://archive.xfce.org/src/apps/"
|
||||||
|
name "/" (version-major+minor version) "/"
|
||||||
|
name "-" version ".tar.bz2"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1jwywmkkkmz7406m1jq40w6apiav25cznafhigbgpjv6z5hv27if"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(native-inputs
|
||||||
|
`(("intltool" ,intltool)
|
||||||
|
("pkg-config" ,pkg-config)))
|
||||||
|
(inputs
|
||||||
|
`(("libwnck" ,libwnck-2)
|
||||||
|
("gtk+" ,gtk+-2)))
|
||||||
|
(home-page "http://goodies.xfce.org/projects/applications/xfce4-taskmanager")
|
||||||
|
(synopsis "Easy to use task manager")
|
||||||
|
(description
|
||||||
|
"This is a task manager for the Xfce desktop. It displays the CPU and
|
||||||
|
memory usage graphically, and it can display processes as a tree.")
|
||||||
|
(license gpl2+)))
|
||||||
|
|
Loading…
Reference in a new issue