all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#55046] [PATCH 1/2] gnu: avizo: Add 1.2
@ 2022-04-20 21:57 Pier-Hugues Pellerin
  2022-04-20 21:59 ` [bug#55046] [PATCH 2/2] Add Pier-Hugues Pellerin to header Pier-Hugues Pellerin
  2022-04-28 22:44 ` bug#55046: [PATCH 1/2] gnu: avizo: Add 1.2 Ludovic Courtès
  0 siblings, 2 replies; 3+ messages in thread
From: Pier-Hugues Pellerin @ 2022-04-20 21:57 UTC (permalink / raw)
  To: 55046; +Cc: Pier-Hugues Pellerin

Avizo is a simple notification daemon, mainly intended to be used for
multimedia keys.
---
 gnu/packages/xdisorg.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm
index d2caee85ec..08f6f3ad69 100644
--- a/gnu/packages/xdisorg.scm
+++ b/gnu/packages/xdisorg.scm
@@ -3050,3 +3050,32 @@ (define-public wlsunset
 that support @samp{wlr-gamma-control-unstable-v1}.  It is also known as a blue
 light filter or night light.")
     (license license:expat)))
+
+(define-public avizo
+  (package
+    (name "avizo")
+    (version "1.2")
+    (source
+      (origin
+        (method git-fetch)
+        (uri (git-reference
+               (url "https://github.com/misterdanb/avizo")
+               (commit version)))
+        (file-name (git-file-name name version))
+        (sha256
+          (base32 "02h2jbgrbl2hyq6bzwryc1r47mipgdqrdh7zi44skc25w045s6q5"))))
+    (build-system meson-build-system)
+    (arguments
+     `(#:build-type "release"))
+    (inputs
+     `(("gtk+", gtk+)))
+    (native-inputs
+     `(("vala", vala)
+       ("glib:bin", glib "bin")
+       ("gobject-introspection", gobject-introspection)
+       ("gtk-layer-shell", gtk-layer-shell)
+       ("pkg-config", pkg-config)))
+    (home-page "https://github.com/misterdanb/avizo")
+    (synopsis "Avizo notification daemon")
+    (description "Avizo is a simple notification daemon for sway, mainly intended to be used for multimedia keys.")
+    (license license:gpl3+)))

base-commit: 6db5787120d5b571836a46ab8e1abc92d1b0ef8d
-- 
2.35.1





^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [bug#55046] [PATCH 2/2] Add Pier-Hugues Pellerin to header
  2022-04-20 21:57 [bug#55046] [PATCH 1/2] gnu: avizo: Add 1.2 Pier-Hugues Pellerin
@ 2022-04-20 21:59 ` Pier-Hugues Pellerin
  2022-04-28 22:44 ` bug#55046: [PATCH 1/2] gnu: avizo: Add 1.2 Ludovic Courtès
  1 sibling, 0 replies; 3+ messages in thread
From: Pier-Hugues Pellerin @ 2022-04-20 21:59 UTC (permalink / raw)
  To: 55046; +Cc: Pier-Hugues Pellerin

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=y, Size: 552 bytes --]

---
 gnu/packages/xdisorg.scm | 1 +
 1 file changed, 1 insertion(+)

diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm
index 08f6f3ad69..b531e735cc 100644
--- a/gnu/packages/xdisorg.scm
+++ b/gnu/packages/xdisorg.scm
@@ -54,6 +54,7 @@
 ;;; Copyright © 2021 jgart <jgart@dismail.de>
 ;;; Copyright © 2022 John Kehayias <john.kehayias@protonmail.com>
 ;;; Copyright © 2022 Jai Vetrivelan <jaivetrivelan@gmail.com>
+;;; Copyright © 2022 Pier-Hugues Pellerin <ph@heykimo.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
-- 
2.35.1





^ permalink raw reply related	[flat|nested] 3+ messages in thread

* bug#55046: [PATCH 1/2] gnu: avizo: Add 1.2
  2022-04-20 21:57 [bug#55046] [PATCH 1/2] gnu: avizo: Add 1.2 Pier-Hugues Pellerin
  2022-04-20 21:59 ` [bug#55046] [PATCH 2/2] Add Pier-Hugues Pellerin to header Pier-Hugues Pellerin
@ 2022-04-28 22:44 ` Ludovic Courtès
  1 sibling, 0 replies; 3+ messages in thread
From: Ludovic Courtès @ 2022-04-28 22:44 UTC (permalink / raw)
  To: Pier-Hugues Pellerin; +Cc: 55046-done

Pier-Hugues Pellerin <ph@heykimo.com> skribis:

> Avizo is a simple notification daemon, mainly intended to be used for
> multimedia keys.
> ---
>  gnu/packages/xdisorg.scm | 29 +++++++++++++++++++++++++++++

Hi!

Pushed as 313ae43f51b6571c64642645cdc9d63e2f886114.

I took the liberty to make a couple of changes: moving it to wm.scm
(next to Sway), running ‘guix style -S inputs’ and ‘guix style’, and
adjusting the synopsis as reported by ‘guix lint’.

Let me know if anything is amiss.

Thanks!

Ludo’.




^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-04-28 22:45 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-20 21:57 [bug#55046] [PATCH 1/2] gnu: avizo: Add 1.2 Pier-Hugues Pellerin
2022-04-20 21:59 ` [bug#55046] [PATCH 2/2] Add Pier-Hugues Pellerin to header Pier-Hugues Pellerin
2022-04-28 22:44 ` bug#55046: [PATCH 1/2] gnu: avizo: Add 1.2 Ludovic Courtès

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.