emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#58655: closed ([PATCH 2/3] gnu: Add swc.)


From: GNU bug Tracking System
Subject: bug#58655: closed ([PATCH 2/3] gnu: Add swc.)
Date: Fri, 18 Nov 2022 13:52:03 +0000

Your message dated Fri, 18 Nov 2022 14:51:25 +0100
with message-id <87zgcobcbm.fsf_-_@gnu.org>
and subject line Re: bug#58657: [PATCH 1/3] gnu: Add wld.
has caused the debbugs.gnu.org bug report #58657,
regarding [PATCH 2/3] gnu: Add swc.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
58657: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=58657
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH 2/3] gnu: Add swc. Date: Thu, 20 Oct 2022 09:25:12 -0300
* gnu/packages/wm.scm (swc): New variable.
---
 gnu/packages/wm.scm | 45 +++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 45 insertions(+)

diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index 94dfd28f4a..d5c5dc4ed2 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -2966,3 +2966,48 @@ (define-public wld
       (synopsis "A primitive drawing library targeted at Wayland")
       (description "wld is a drawing library that targets Wayland.")
       (license license:expat))))
+
+(define-public swc
+  (let ((commit "a7b615567f83d9e48d585251015048c441ca0239")
+        (revision "1"))
+    (package
+      (name "swc")
+      (version (git-version "0" revision commit))
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                       (url "https://github.com/michaelforney/swc";)
+                       (commit commit)))
+                (sha256
+                  (base32
+                    "19rpbwpi81pm92fkhsmbx7pzagpah5m9ih5h5k3m8dy6r8ihdh35"))))
+      (build-system gnu-build-system)
+      (arguments
+       `(#:tests? #f ; no tests
+         #:make-flags
+         (list (string-append "CC=" ,(cc-for-target))
+               (string-append "PREFIX=" %output))
+         #:phases
+         (modify-phases %standard-phases
+           (delete 'configure))))
+      (inputs (list libdrm
+                    libinput
+                    libxcb
+                    libxkbcommon
+                    wayland
+                    wayland-protocols
+                    wld
+                    xcb-util-wm))
+      (native-inputs (list pkg-config))
+      (home-page "https://github.com/michaelforney/swc";)
+      (synopsis "A library for making a simple Wayland compositor")
+      (description "swc is a small Wayland compositor implemented as a library.
+
+It has been designed primarily with tiling window managers in mind.  
Additionally,
+notable features include:
+@itemize
+@item Easy to follow code base
+@item XWayland support
+@item Can place borders around windows
+@end itemize")
+      (license license:expat))))
-- 
2.38.0




--- End Message ---
--- Begin Message --- Subject: Re: bug#58657: [PATCH 1/3] gnu: Add wld. Date: Fri, 18 Nov 2022 14:51:25 +0100 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux)
Hi,

zamfofex <zamfofex@twdb.moe> skribis:

> * gnu/packages/wm.scm (wld): New variable.

I fixed issues reported by ‘guix lint’ and applied it.

Thanks,
Ludo’.


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]