[bug#79713] PATCH 0001-gnu-Add-mangowc

Message ID YP46Sz1y7n1VB6HTczmhoMsUwRYNcnu7un_Azil3XIBQbEkDBjbac3Trg_Sutyd_iGoUHFsy9l2QV1ESmItdPnRLY3JmYczBmNOYr1-vW8w=@protonmail.com
State New
Headers
Series [bug#79713] PATCH 0001-gnu-Add-mangowc |

Commit Message

4zv4l Oct. 28, 2025, 6:10 p.m. UTC
Hi !

This is my first patch, let me know if I can do anything better next time.
Here is a patch to add mangowc.
Thank you !

Simon Blacks (4zv4l)
  

Comments

4zv4l Oct. 29, 2025, 2:29 a.m. UTC | #1
Hi !

I forgot to change the license from #f to gpl3.
As seen here: https://github.com/DreamMaoMao/mangowc/blob/main/LICENSE.

Should I send a patch file for this little change ?

Thank you !
  

Patch

From e4ede58dd790e1c1a719cfc912fb52180baad8f4 Mon Sep 17 00:00:00 2001
From: 4zv4l <4zv4l@protonmail.com>
Date: Wed, 29 Oct 2025 02:02:34 +0800
Subject: [PATCH] gnu: Add mangowc.

* gnu/packages/wm.scm (mangowc): New variable.
---
 gnu/packages/wm.scm | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)

diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index 5504bce..a574f95 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -4724,3 +4724,38 @@  (define-public scenefx
      "A drop-in replacement for the wlroots scene API that allows wayland
 compositors to render surfaces with eye-candy effects.")
     (license license:expat)))
+
+(define-public mangowc
+  (package
+    (name "mangowc")
+    (version "0.10.4")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/DreamMaoMao/mangowc")
+             (commit "0.10.4")))
+       (sha256
+        (base32 "0cayb2r69zcp5q810bqhq27xi0b5dlk81qwl6zj6aqjphh6yzpv9"))))
+    (build-system meson-build-system)
+    (inputs (list wayland
+                  wayland-protocols
+                  libinput
+                  libdrm
+                  libxkbcommon
+                  pixman
+                  libdisplay-info
+                  libliftoff
+                  hwdata
+                  seatd
+                  pcre2
+                  libxcb
+                  xcb-util-wm
+                  wlroots
+                  scenefx))
+    (native-inputs (list meson ninja pkg-config))
+    (home-page "https://github.com/DreamMaoMao/mangowc")
+    (synopsis "Wayland compositor based on wlroots and scenefx")
+    (description "A Wayland compositor based on wlroots and scenefx,
+inspired by dwl but aiming to be more feature-rich.")
+    (license #f)))

base-commit: 019a912a5b4136e0df8a8ab8799aa2e644f1e077
-- 
2.51.0