[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/09: gnu: Add swc.
From: |
guix-commits |
Subject: |
01/09: gnu: Add swc. |
Date: |
Mon, 28 Nov 2022 17:35:37 -0500 (EST) |
civodul pushed a commit to branch master
in repository guix.
commit 27b04fcdd4073d9e8ded620ffbc7d0ed7cad1c15
Author: zamfofex <zamfofex@twdb.moe>
AuthorDate: Thu Oct 20 09:25:12 2022 -0300
gnu: Add swc.
* gnu/packages/wm.scm (swc): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/wm.scm | 46 ++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 46 insertions(+)
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index 178a5d95ba..149ea1bb69 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -2987,3 +2987,49 @@ file.")))
(synopsis "Primitive drawing library for 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"))
+ (file-name (git-file-name name version))))
+ (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 "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))))
- branch master updated (fddd62ff53 -> 3cff7bfa9b), guix-commits, 2022/11/28
- 04/09: gnu: Add go-github-com-itchyny-timefmt-go., guix-commits, 2022/11/28
- 03/09: gnu: Add paulxstretch., guix-commits, 2022/11/28
- 05/09: gnu: Add go-github-com-itchyny-gojq., guix-commits, 2022/11/28
- 06/09: gnu: Add gojq., guix-commits, 2022/11/28
- 07/09: gnu: Add python-pynixutil., guix-commits, 2022/11/28
- 09/09: gnu: Add svtplay-dl., guix-commits, 2022/11/28
- 08/09: gnu: Add python-dm-tree., guix-commits, 2022/11/28
- 02/09: snippets: yas: Add snippets for vc.el, guix-commits, 2022/11/28
- 01/09: gnu: Add swc.,
guix-commits <=