packages: admin: Add fyi

main
Luis Guilherme Coelho 2024-08-02 16:11:48 -03:00
parent 714effa1f7
commit befc4385cd
No known key found for this signature in database
GPG Key ID: 1F2E76ACE3F531C8
1 changed files with 33 additions and 1 deletions

View File

@ -1,10 +1,15 @@
(define-module (radix packages admin)
#:use-module (guix build-system copy)
#:use-module (guix build-system meson)
#:use-module (guix gexp)
#:use-module (guix git-download)
#:use-module (guix packages)
#:use-module ((guix licenses)
#:prefix license:))
#:prefix license:)
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages man)
#:use-module (gnu packages cmake)
#:use-module (gnu packages glib))
(define-public zzz
(let ((commit "329b891426efc093ad8c65e96364427c2fb25b54")
@ -30,3 +35,30 @@
(description "Simple script to suspend or hibernate your computer. It
suports hooks before and after suspending.")
(license license:cc0))))
(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 pkg-config
cmake
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)))