mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add xfce4-clipman-plugin.
* gnu/packages/xfce.scm (xfce4-clipman-plugin): New variable. (xfce)[propagated-inputs]: Add it.
This commit is contained in:
parent
38d2778608
commit
d692678fee
1 changed files with 32 additions and 0 deletions
|
@ -318,6 +318,37 @@ (define-public xfce4-battery-plugin
|
||||||
;; to read the battery state via ACPI or APM are covered by lgpl2.0+.
|
;; to read the battery state via ACPI or APM are covered by lgpl2.0+.
|
||||||
(license (list gpl2+ lgpl2.0+))))
|
(license (list gpl2+ lgpl2.0+))))
|
||||||
|
|
||||||
|
(define-public xfce4-clipman-plugin
|
||||||
|
(package
|
||||||
|
(name "xfce4-clipman-plugin")
|
||||||
|
(version "1.2.6")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "http://archive.xfce.org/src/panel-plugins/"
|
||||||
|
name "/" (version-major+minor version) "/"
|
||||||
|
name "-" version ".tar.bz2"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"19a8gwcqc0r5qqi8w28dc8arqip34m8yxdb87lgps9g5qfcky113"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(native-inputs
|
||||||
|
`(("intltool" ,intltool)
|
||||||
|
("pkg-config" ,pkg-config)))
|
||||||
|
(inputs
|
||||||
|
`(("exo" ,exo)
|
||||||
|
("libxfce4ui" ,libxfce4ui)
|
||||||
|
("libxtst" ,libxtst)
|
||||||
|
("xfce4-panel" ,xfce4-panel)))
|
||||||
|
(home-page
|
||||||
|
"http://goodies.xfce.org/projects/panel-plugins/xfce4-clipman-plugin")
|
||||||
|
(synopsis "Clipboard manager for Xfce")
|
||||||
|
(description
|
||||||
|
"Clipman is a clipboard manager for Xfce. It keeps the clipboard contents
|
||||||
|
around while it is usually lost when you close an application. It is able to
|
||||||
|
handle text and images, and has a feature to execute actions on specific text by
|
||||||
|
matching them against regular expressions.")
|
||||||
|
(license (list gpl2+))))
|
||||||
|
|
||||||
(define-public xfce4-appfinder
|
(define-public xfce4-appfinder
|
||||||
(package
|
(package
|
||||||
(name "xfce4-appfinder")
|
(name "xfce4-appfinder")
|
||||||
|
@ -601,6 +632,7 @@ (define-public xfce
|
||||||
("tumlber" ,tumbler)
|
("tumlber" ,tumbler)
|
||||||
("xfce4-appfinder" ,xfce4-appfinder)
|
("xfce4-appfinder" ,xfce4-appfinder)
|
||||||
("xfce4-battery-plugin" ,xfce4-battery-plugin)
|
("xfce4-battery-plugin" ,xfce4-battery-plugin)
|
||||||
|
("xfce4-clipman-plugin" ,xfce4-clipman-plugin)
|
||||||
("xfce4-panel" ,xfce4-panel)
|
("xfce4-panel" ,xfce4-panel)
|
||||||
("xfce4-session" ,xfce4-session)
|
("xfce4-session" ,xfce4-session)
|
||||||
("xfce4-settings" ,xfce4-settings)
|
("xfce4-settings" ,xfce4-settings)
|
||||||
|
|
Loading…
Reference in a new issue