all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#64208] [PATCH] gnu: Add river Wayland compositor and tigerbeetle database
@ 2023-06-21 14:32 Felix Lechner via Guix-patches via
  2023-06-21 14:33 ` [bug#64208] [PATCH 1/2] gnu: Add tigerbeetle Felix Lechner via Guix-patches via
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Felix Lechner via Guix-patches via @ 2023-06-21 14:32 UTC (permalink / raw)
  To: 64208; +Cc: Felix Lechner, Ekaitz Zarraga

Hi,

The tigerbeetle definition was originally part of Bug#60889 and was
split out here. The purpose was to make rebases easier.

The Zig build system in the bug above is a prerequisite for these patches.

Kind regards
Felix

Ekaitz Zarraga (1):
  gnu: Add tigerbeetle.

Felix Lechner (1):
  gnu: Add river.

 gnu/packages/zig-xyz.scm | 72 ++++++++++++++++++++++++++++++++++++++--
 1 file changed, 70 insertions(+), 2 deletions(-)


base-commit: 1a0ff5cd83d3257efcab64740a1322de51fbc4a1
-- 
2.40.1





^ permalink raw reply	[flat|nested] 4+ messages in thread

* [bug#64208] [PATCH 1/2] gnu: Add tigerbeetle.
  2023-06-21 14:32 [bug#64208] [PATCH] gnu: Add river Wayland compositor and tigerbeetle database Felix Lechner via Guix-patches via
@ 2023-06-21 14:33 ` Felix Lechner via Guix-patches via
  2023-06-21 14:33 ` [bug#64208] [PATCH 2/2] gnu: Add river Felix Lechner via Guix-patches via
  2023-10-20 22:12 ` bug#64208: [PATCH] gnu: Add river Wayland compositor and tigerbeetle database Ludovic Courtès
  2 siblings, 0 replies; 4+ messages in thread
From: Felix Lechner via Guix-patches via @ 2023-06-21 14:33 UTC (permalink / raw)
  To: 64208; +Cc: Ekaitz Zarraga

From: Ekaitz Zarraga <ekaitz@elenq.tech>

* gnu/packages/zig-xyz.scm (tigerbeetle): New variable.
---
 gnu/packages/zig-xyz.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/zig-xyz.scm b/gnu/packages/zig-xyz.scm
index fd42c21638..ebb5250a03 100644
--- a/gnu/packages/zig-xyz.scm
+++ b/gnu/packages/zig-xyz.scm
@@ -1,5 +1,6 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2022 Maya Tomasek <maya.tomasek@disroot.org>
+;;; Copyright © 2023 Ekaitz Zarraga <ekaitz@elenq.tech>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -21,11 +22,36 @@ (define-module (gnu packages zig-xyz)
   #:use-module (guix git-download)
   #:use-module ((guix licenses) #:prefix license:)
   #:use-module (guix build-system gnu)
+  #:use-module (guix build-system zig)
   #:use-module (guix gexp)
   #:use-module (gnu packages)
   #:use-module (gnu packages zig)
   #:use-module (gnu packages python))
 
+(define-public tigerbeetle
+  (package
+    (name "tigerbeetle")
+    (version "0.13.35")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/tigerbeetledb/tigerbeetle")
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0x8msknvq8s6vnlczq5fxmaiqvig2sbcv60c3x8zbgr28dsqpmll"))))
+    (build-system zig-build-system)
+    (arguments
+     (list
+      #:zig zig-0.9
+      #:zig-release-type "safe"))
+    (synopsis "Distributed financial accounting database")
+    (description "Financial accounting database designed for mission critical
+safety and performance to power the future of financial services.")
+    (home-page "https://github.com/tigerbeetledb/tigerbeetle")
+    (license license:asl2.0)))
+
 (define-public zig-zls
   (package
     (name "zig-zls")
-- 
2.40.1





^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [bug#64208] [PATCH 2/2] gnu: Add river.
  2023-06-21 14:32 [bug#64208] [PATCH] gnu: Add river Wayland compositor and tigerbeetle database Felix Lechner via Guix-patches via
  2023-06-21 14:33 ` [bug#64208] [PATCH 1/2] gnu: Add tigerbeetle Felix Lechner via Guix-patches via
@ 2023-06-21 14:33 ` Felix Lechner via Guix-patches via
  2023-10-20 22:12 ` bug#64208: [PATCH] gnu: Add river Wayland compositor and tigerbeetle database Ludovic Courtès
  2 siblings, 0 replies; 4+ messages in thread
From: Felix Lechner via Guix-patches via @ 2023-06-21 14:33 UTC (permalink / raw)
  To: 64208; +Cc: Felix Lechner, Ekaitz Zarraga

* gnu/packages/zig-xyz.scm (river): New variable.
---
 gnu/packages/zig-xyz.scm | 46 ++++++++++++++++++++++++++++++++++++++--
 1 file changed, 44 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/zig-xyz.scm b/gnu/packages/zig-xyz.scm
index ebb5250a03..424a267e9f 100644
--- a/gnu/packages/zig-xyz.scm
+++ b/gnu/packages/zig-xyz.scm
@@ -1,6 +1,7 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2022 Maya Tomasek <maya.tomasek@disroot.org>
 ;;; Copyright © 2023 Ekaitz Zarraga <ekaitz@elenq.tech>
+;;; Copyright © 2023 Felix Lechner <felix.lechner@lease-up.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -25,8 +26,49 @@ (define-module (gnu packages zig-xyz)
   #:use-module (guix build-system zig)
   #:use-module (guix gexp)
   #:use-module (gnu packages)
-  #:use-module (gnu packages zig)
-  #:use-module (gnu packages python))
+  #:use-module (gnu packages freedesktop)
+  #:use-module (gnu packages man)
+  #:use-module (gnu packages pkg-config)
+  #:use-module (gnu packages python)
+  #:use-module (gnu packages wm)
+  #:use-module (gnu packages xdisorg)
+  #:use-module (gnu packages xorg)
+  #:use-module (gnu packages zig))
+
+(define-public river
+  (package
+    (name "river")
+    (version "0.2.4")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/riverwm/river")
+                    (commit (string-append "v" version))
+                    (recursive? #t)))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1nvhqs6wwisf8ama7y1y3q3nf2jm9sh5bn46z8kyds8cikm0x1vh"))))
+    (build-system zig-build-system)
+    (arguments
+     (list
+      #:zig-build-flags #~(list "-Dxwayland")  ;experimental xwayland support
+      #:zig-release-type "safe"))
+    (native-inputs (list
+                    libevdev
+                    libxkbcommon
+                    pkg-config
+                    pixman
+                    scdoc
+                    wayland
+                    wayland-protocols
+                    wlroots))
+    (home-page "https://github.com/riverwm/river")
+    (synopsis "Dynamic tiling Wayland compositor")
+    (description "River is a dynamic tiling Wayland compositor with flexible
+runtime configuration.  It can run nested in an X11/Wayland session or also
+directly from a tty using KMS/DRM.")
+    (license license:gpl3)))
 
 (define-public tigerbeetle
   (package
-- 
2.40.1





^ permalink raw reply related	[flat|nested] 4+ messages in thread

* bug#64208: [PATCH] gnu: Add river Wayland compositor and tigerbeetle database
  2023-06-21 14:32 [bug#64208] [PATCH] gnu: Add river Wayland compositor and tigerbeetle database Felix Lechner via Guix-patches via
  2023-06-21 14:33 ` [bug#64208] [PATCH 1/2] gnu: Add tigerbeetle Felix Lechner via Guix-patches via
  2023-06-21 14:33 ` [bug#64208] [PATCH 2/2] gnu: Add river Felix Lechner via Guix-patches via
@ 2023-10-20 22:12 ` Ludovic Courtès
  2 siblings, 0 replies; 4+ messages in thread
From: Ludovic Courtès @ 2023-10-20 22:12 UTC (permalink / raw)
  To: Felix Lechner; +Cc: 64208-done, Ekaitz Zarraga

Hi,

Felix Lechner <felix.lechner@lease-up.com> skribis:

> Ekaitz Zarraga (1):
>   gnu: Add tigerbeetle.
>
> Felix Lechner (1):
>   gnu: Add river.

Thanks, applied as well!

Ekaitz, if/when cross-compilation support for ‘zig-build-system’ is
ready, could you please send it as a new patch?  Hopefully the review
delay will be shorter this time…

Thanks,
Ludo’.




^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-10-20 22:13 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-06-21 14:32 [bug#64208] [PATCH] gnu: Add river Wayland compositor and tigerbeetle database Felix Lechner via Guix-patches via
2023-06-21 14:33 ` [bug#64208] [PATCH 1/2] gnu: Add tigerbeetle Felix Lechner via Guix-patches via
2023-06-21 14:33 ` [bug#64208] [PATCH 2/2] gnu: Add river Felix Lechner via Guix-patches via
2023-10-20 22:12 ` bug#64208: [PATCH] gnu: Add river Wayland compositor and tigerbeetle database Ludovic Courtès

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.