all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#64030] [PATCH] gnu: Add xiate.
@ 2023-06-12 22:12 mekeor
  2023-06-14 18:52 ` [bug#64030] [PATCH v2] " Mekeor Melire
  0 siblings, 1 reply; 3+ messages in thread
From: mekeor @ 2023-06-12 22:12 UTC (permalink / raw)
  To: 64030

* gnu/packages/terminals.scm (xiate): New variable.
---
 gnu/packages/terminals.scm | 43 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 43 insertions(+)

diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm
index e3d0937ecc..80d39cc761 100644
--- a/gnu/packages/terminals.scm
+++ b/gnu/packages/terminals.scm
@@ -938,6 +938,49 @@ (define-public sakura
 desktop installed to have a decent terminal emulator.")
     (license license:gpl2)))
 
+(define-public xiate
+  (let
+    ((commit "ae3cf30b345c64f097a747ac848e23ef5bae8b57")
+      (revision "0"))
+    (package
+      (name "xiate")
+      (version (git-version "21.12" revision commit))
+      (source
+        (origin
+          (method git-fetch)
+          (file-name (git-file-name name version))
+          (uri
+            (git-reference
+              (url "https://www.uninformativ.de/git/xiate.git")
+              (commit commit)))
+          (sha256
+            (base32
+              "0bc205b1gs1jvp1a2cr814l32hmlm0sgv1drfw7ykbavslfpmg2d"))))
+      (build-system gnu-build-system)
+      (arguments
+        (list
+          #:tests? #f ; no tests
+          #:make-flags
+          #~(list
+              (string-append "CC=" #$(cc-for-target))
+              (string-append "prefix=" #$output))
+          #:phases
+          #~(modify-phases %standard-phases
+              (delete 'configure)
+              (add-after 'unpack 'patch-makefile
+                (lambda _
+                  (substitute* "Makefile"
+                    (("/usr/local") #$output)))))))
+      (inputs (list gtk+ glib vte))
+      (native-inputs (list pkg-config))
+      (synopsis "Minimalist terminal emulator based on GTK+")
+      (description "Xiate is a terminal emulator which tries to keep a balance
+between features and simplicity. This is achieved by using VTE as a powerful
+backend, while UI, configuration, and code try to remain much more
+minimalistic.")
+      (home-page "https://www.uninformativ.de/git/xiate/file/README.html")
+      (license license:expat))))
+
 (define-public go-github.com-nsf-termbox-go
   (let ((commit "288510b9734e30e7966ec2f22b87c5f8e67345e3")
         (revision "1"))

base-commit: 44bbfc24e4bcc48d0e3343cd3d83452721af8c36
-- 
2.39.2






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

* [bug#64030] [PATCH v2] gnu: Add xiate.
  2023-06-12 22:12 [bug#64030] [PATCH] gnu: Add xiate mekeor
@ 2023-06-14 18:52 ` Mekeor Melire
  2023-06-20 21:53   ` bug#64030: [PATCH] " Ludovic Courtès
  0 siblings, 1 reply; 3+ messages in thread
From: Mekeor Melire @ 2023-06-14 18:52 UTC (permalink / raw)
  To: 64030; +Cc: Mekeor Melire

* gnu/packages/terminals.scm (xiate): New variable.
---
 gnu/packages/terminals.scm | 38 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 38 insertions(+)

diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm
index e3d0937ecc..6dada660d3 100644
--- a/gnu/packages/terminals.scm
+++ b/gnu/packages/terminals.scm
@@ -938,6 +938,44 @@ (define-public sakura
 desktop installed to have a decent terminal emulator.")
     (license license:gpl2)))
 
+(define-public xiate
+  (let
+    ((commit "ae3cf30b345c64f097a747ac848e23ef5bae8b57")
+      (revision "0"))
+    (package
+      (name "xiate")
+      (version (git-version "21.12" revision commit))
+      (source
+        (origin
+          (method git-fetch)
+          (file-name (git-file-name name version))
+          (uri
+            (git-reference
+              (url "https://www.uninformativ.de/git/xiate.git")
+              (commit commit)))
+          (sha256
+            (base32
+              "0bc205b1gs1jvp1a2cr814l32hmlm0sgv1drfw7ykbavslfpmg2d"))))
+      (build-system gnu-build-system)
+      (arguments
+        (list
+          #: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 gtk+ glib vte))
+      (native-inputs (list pkg-config))
+      (synopsis "Minimalist terminal emulator based on GTK+")
+      (description "Xiate is a terminal emulator which tries to keep a balance
+between features and simplicity.  This is achieved by using VTE as a powerful
+backend, while UI, configuration, and code try to remain much more
+minimalistic.")
+      (home-page "https://www.uninformativ.de/git/xiate/file/README.html")
+      (license license:expat))))
+
 (define-public go-github.com-nsf-termbox-go
   (let ((commit "288510b9734e30e7966ec2f22b87c5f8e67345e3")
         (revision "1"))

base-commit: 44bbfc24e4bcc48d0e3343cd3d83452721af8c36
-- 
2.39.2





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

* bug#64030: [PATCH] gnu: Add xiate.
  2023-06-14 18:52 ` [bug#64030] [PATCH v2] " Mekeor Melire
@ 2023-06-20 21:53   ` Ludovic Courtès
  0 siblings, 0 replies; 3+ messages in thread
From: Ludovic Courtès @ 2023-06-20 21:53 UTC (permalink / raw)
  To: Mekeor Melire; +Cc: 64030-done

Hi,

Mekeor Melire <mekeor@posteo.de> skribis:

> * gnu/packages/terminals.scm (xiate): New variable.

Applied, but…

> +  (let
> +    ((commit "ae3cf30b345c64f097a747ac848e23ef5bae8b57")
> +      (revision "0"))
> +    (package
> +      (name "xiate")
> +      (version (git-version "21.12" revision commit))

… the commit apparently corresponds to 22.12, so I changed the versionm
number accordingly.

I also passed it through ‘guix style’.

Thanks,
Ludo’.




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

end of thread, other threads:[~2023-06-20 21:54 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-06-12 22:12 [bug#64030] [PATCH] gnu: Add xiate mekeor
2023-06-14 18:52 ` [bug#64030] [PATCH v2] " Mekeor Melire
2023-06-20 21:53   ` bug#64030: [PATCH] " 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.