all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: mekeor@posteo.de
To: 64030@debbugs.gnu.org
Subject: [bug#64030] [PATCH] gnu: Add xiate.
Date: Mon, 12 Jun 2023 22:12:32 +0000	[thread overview]
Message-ID: <d99dbbede5f33c76d3ff4e81d10dbda1f4e94cb1.1686610408.git.mekeor@posteo.de> (raw)

* 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






             reply	other threads:[~2023-06-13  1:13 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-06-12 22:12 mekeor [this message]
2023-06-14 18:52 ` [bug#64030] [PATCH v2] gnu: Add xiate Mekeor Melire
2023-06-20 21:53   ` bug#64030: [PATCH] " Ludovic Courtès

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=d99dbbede5f33c76d3ff4e81d10dbda1f4e94cb1.1686610408.git.mekeor@posteo.de \
    --to=mekeor@posteo.de \
    --cc=64030@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.