diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-07-18 16:05:21 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-07-18 19:50:01 +0200 |
commit | 0e47fcced442d8e7c1b05184fdc1c14f10ed04ec (patch) | |
tree | 4ae844bc0ec3c670f8697bdc24362c122fa718ad /gnu/packages/wm.scm | |
parent | e4b70bc55a538569465bcedee19d1f2607308e65 (diff) | |
parent | 8b1bde7bb3936a64244824500ffe60f123704437 (diff) | |
download | guix-0e47fcced442d8e7c1b05184fdc1c14f10ed04ec.tar.gz |
Merge branch 'master' into core-updates
Diffstat (limited to 'gnu/packages/wm.scm')
-rw-r--r-- | gnu/packages/wm.scm | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm index f7a9dda800..51034cac4b 100644 --- a/gnu/packages/wm.scm +++ b/gnu/packages/wm.scm @@ -82,6 +82,7 @@ #:use-module (gnu packages bison) #:use-module (gnu packages build-tools) ;for meson-0.55 #:use-module (gnu packages calendar) + #:use-module (gnu packages datastructures) #:use-module (gnu packages docbook) #:use-module (gnu packages documentation) #:use-module (gnu packages fontutils) @@ -908,6 +909,39 @@ experience.") (home-page "http://fluxbox.org/") (license license:expat))) +(define-public fnott + (package + (name "fnott") + (version "1.1.0") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://codeberg.org/dnkl/fnott") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1xaz13iry3fdjhqk9xzg29kbv7hqj8dzzqxr5mhrj8f2m013jdc3")))) + (build-system meson-build-system) + (arguments `(#:build-type "release")) + (native-inputs + `(("pkg-config" ,pkg-config) + ("wayland-protocols" ,wayland-protocols) + ("tllist" ,tllist) + ("gcc" ,gcc-10) ;TODO: Remove when the default compiler is > GCC 7. + ("scdoc" ,scdoc))) + (inputs + `(("wlroots" ,wlroots) + ("wayland" ,wayland) + ("fcft" ,fcft) + ("dbus" ,dbus) + ("libpng" ,libpng))) + (home-page "https://codeberg.org/dnkl/fnott") + (synopsis "Keyboard driven and lightweight Wayland notification daemon") + (description "Fnott is a keyboard driven and lightweight notification daemon +for wlroots-based Wayland compositors.") + (license license:expat))) + (define-public awesome (package (name "awesome") |