packages: xdisorg: Add fyi
parent
4a9674dab1
commit
fcb5da4adc
|
@ -1,8 +1,9 @@
|
||||||
(define-module (radix packages xdisorg)
|
(define-module (radix packages xdisorg)
|
||||||
#:use-module (gnu packages wm)
|
|
||||||
#:use-module (gnu packages man)
|
|
||||||
#:use-module (gnu packages cmake)
|
#:use-module (gnu packages cmake)
|
||||||
|
#:use-module (gnu packages glib)
|
||||||
|
#:use-module (gnu packages man)
|
||||||
#:use-module (gnu packages pkg-config)
|
#:use-module (gnu packages pkg-config)
|
||||||
|
#:use-module (gnu packages wm)
|
||||||
#:use-module (gnu packages xdisorg)
|
#:use-module (gnu packages xdisorg)
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
#:use-module (guix git-download)
|
#:use-module (guix git-download)
|
||||||
|
@ -33,3 +34,30 @@ Wayland extensions.")
|
||||||
(description "wlrctl is a command line utility for miscellaneous wlroots
|
(description "wlrctl is a command line utility for miscellaneous wlroots
|
||||||
Wayland extensions.")
|
Wayland extensions.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public fyi
|
||||||
|
(package
|
||||||
|
(name "fyi")
|
||||||
|
(version "1.0.2")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://codeberg.org/dnkl/fyi")
|
||||||
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1cbqx659fzfnjdhvimwng7h4yx35rm9aldp8jq75hqxf1lqm7xb6"))))
|
||||||
|
(build-system meson-build-system)
|
||||||
|
(native-inputs
|
||||||
|
(list cmake
|
||||||
|
pkg-config
|
||||||
|
scdoc))
|
||||||
|
(inputs
|
||||||
|
(list dbus))
|
||||||
|
(home-page "https://codeberg.org/dnkl/fyi")
|
||||||
|
(synopsis "notify-send alternative.")
|
||||||
|
(description "FYI (for your information) is a command line utility to send
|
||||||
|
desktop notifications to the user via a notification daemon implementing XDG
|
||||||
|
desktop notifications.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
Loading…
Reference in New Issue