This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 954bd5a0cb gnu: Add fvwm3.
954bd5a0cb is described below
commit 954bd5a0cbb0e03140ca73123795ed334b9e838b
Author: Andy Tai <[email protected]>
AuthorDate: Sun Jan 18 20:26:31 2026 -0800
gnu: Add fvwm3.
* gnu/packages/wm.scm (fvwm3): New variable.
Change-Id: I203c28201ef366d8c831c7cd33ef95d92e191c32
Signed-off-by: Cayetano Santos <[email protected]>
---
gnu/packages/wm.scm | 47 +++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 47 insertions(+)
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index 23cf1b774e..b260e25ebc 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -87,6 +87,7 @@
;;; Copyright © 2025 Artyom V. Poptsov <[email protected]>
;;; Copyright © 2025 Aleksandr Lebedev <[email protected]>
;;; Copyright © 2026 Carlos Durán Domínguez <[email protected]>
+;;; Copyright © 2026 Andy Tai <[email protected]>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -193,6 +194,7 @@
#:use-module (gnu packages qt)
#:use-module (gnu packages readline)
#:use-module (gnu packages regex)
+ #:use-module (gnu packages ruby-xyz)
#:use-module (gnu packages rust-apps)
#:use-module (gnu packages serialization)
#:use-module (gnu packages sphinx)
@@ -345,6 +347,51 @@ the @code{.../share/quickshell} path in the package.")
qtmultimedia
wl-clipboard)))))
+(define-public fvwm3
+ (package
+ (name "fvwm3")
+ (version "1.1.4")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/fvwmorg/fvwm3")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1dfirf8dnybkgjnw48vy9k128a97ipyzqdhqyak9v9q0gqwyyxl4"))))
+ (build-system meson-build-system)
+ (native-inputs (list pkg-config ruby-asciidoctor))
+ (inputs (list fontconfig
+ fribidi
+ freetype
+ libevent
+ libice
+ libpng
+ libxcb
+ libxcursor
+ libxext
+ libxft
+ libxkbcommon
+ libxrandr
+ libxrender
+ libx11
+ libxpm
+ libxt
+ perl
+ python-minimal
+ readline
+ xcb-util
+ xtrans))
+ (home-page "https://www.fvwm.org/")
+ (synopsis "Virtual window manager for the X windows system")
+ (description
+ "Fvwm is an ICCCM/EWMH-compliant and highly configurable
+floating window manager built primarily using Xlib and can be configured to
+be from a small sleek window manager to a full-featured desktop
+environment.")
+ (license license:gpl2+)))
+
(define-public herbstluftwm
(package
(name "herbstluftwm")