ngz pushed a commit to branch master
in repository guix.

commit bca59a98c079de745fa68e3214553e9acaae9175
Author: Ashish SHUKLA <[email protected]>
AuthorDate: Sat Aug 3 00:01:35 2024 +0200

    gnu: Add fyi.
    
    * gnu/packages/xdisorg.scm (fyi): New variable.
    
    Change-Id: I8bbc45324495cc0248bedd793b1a951aa0126706
    Signed-off-by: Nicolas Goaziou <[email protected]>
---
 gnu/packages/xdisorg.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm
index 554f0012bb..455f9170b2 100644
--- a/gnu/packages/xdisorg.scm
+++ b/gnu/packages/xdisorg.scm
@@ -63,6 +63,7 @@
 ;;; Copyright © 2022 Mehmet Tekman <[email protected]>
 ;;; Copyright © 2024 Artyom V. Poptsov <[email protected]>
 ;;; Copyright © 2024 Igor Goryachev <[email protected]>
+;;; Copyright © 2024 Ashish SHUKLA <[email protected]>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -3375,6 +3376,30 @@ applications.  The font and colors can be configured.")
     (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")

Reply via email to