mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
gnu: Add fyi.
* gnu/packages/xdisorg.scm (fyi): New variable. Change-Id: I8bbc45324495cc0248bedd793b1a951aa0126706 Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
ce40b1c655
commit
bca59a98c0
1 changed files with 25 additions and 0 deletions
|
@ -63,6 +63,7 @@
|
|||
;;; Copyright © 2022 Mehmet Tekman <mtekman89@gmail.com>
|
||||
;;; Copyright © 2024 Artyom V. Poptsov <poptsov.artyom@gmail.com>
|
||||
;;; Copyright © 2024 Igor Goryachev <igor@goryachev.org>
|
||||
;;; Copyright © 2024 Ashish SHUKLA <ashish.is@lostca.se>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -3375,6 +3376,30 @@ (define-public fuzzel
|
|||
(license (list license:expat ;fuzzel
|
||||
license:zlib)))) ;; bundled nanosvg
|
||||
|
||||
(define-public fyi
|
||||
(package
|
||||
(name "fyi")
|
||||
(version "1.0.3")
|
||||
(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
|
||||
"112jczg0gfjgf7jkqlr97a9n5nv931dfdmwvnd5jivdh8ljajwfh"))))
|
||||
(build-system meson-build-system)
|
||||
(native-inputs (list pkg-config))
|
||||
(inputs (list dbus))
|
||||
(home-page "https://codeberg.org/dnkl/fyi")
|
||||
(synopsis "Lightweight alternative to @code{notify-send}")
|
||||
(description
|
||||
"@acronym{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)))
|
||||
|
||||
(define-public wofi
|
||||
(package
|
||||
(name "wofi")
|
||||
|
|
Loading…
Reference in a new issue