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

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

bug#61376: closed ([PATCH] gnu: Add havoc.)


From: GNU bug Tracking System
Subject: bug#61376: closed ([PATCH] gnu: Add havoc.)
Date: Sat, 11 Feb 2023 21:20:02 +0000

Your message dated Sat, 11 Feb 2023 22:19:43 +0100
with message-id <87v8k7sxw0.fsf@nicolasgoaziou.fr>
and subject line Re: [bug#61376] [PATCH] gnu: Add havoc.
has caused the debbugs.gnu.org bug report #61376,
regarding [PATCH] gnu: Add havoc.
to be marked as done.

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


-- 
61376: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=61376
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: Add havoc. Date: Thu, 09 Feb 2023 10:16:13 +0800 User-agent: Gnus/5.13 (Gnus v5.13)
>From 08038bf6660768d462f65be64cd0d43cd50f1052 Mon Sep 17 00:00:00 2001
From: Feng Shu <tumashu@163.com>
Date: Thu, 9 Feb 2023 09:51:07 +0800
Subject: [PATCH] gnu: Add havoc.

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

diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm
index 02401b712d..406df1f422 100644
--- a/gnu/packages/terminals.scm
+++ b/gnu/packages/terminals.scm
@@ -872,6 +872,39 @@ desktop environments.  It can be used as a standalone 
terminal and also has
 a server/client mode.")
     (license license:expat)))
 
+(define-public havoc
+  (package
+    (name "havoc")
+    (version "0.4.0")
+    (home-page "https://github.com/ii8/havoc";)
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference (url home-page) (commit version)))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "052nfli8x4kvly2iwbk0w3i8gk82bz2p8i0ygkwxhy03m5187lnc"))))
+    (build-system gnu-build-system)
+    (arguments
+     (list
+      #:tests? #f ; no check target
+      #:make-flags
+      #~(list (string-append "PREFIX=" #$output))
+      #:phases
+      #~(modify-phases %standard-phases
+          (delete 'configure) ; no configure script
+          (add-before 'build 'set-CC
+            (lambda _
+              (setenv "CC" #$(cc-for-target)))))))
+    (native-inputs
+     (list pkg-config wayland-protocols))
+    (inputs
+     (list libxkbcommon wayland))
+    (synopsis "Minimal terminal emulator for Wayland on Linux")
+    (description
+     "Havoc is a minimal terminal emulator for Wayland on Linux.")
+    (license license:expat)))
+
 (define-public sakura
   (package
     (name "sakura")
-- 
2.30.2



-- 




--- End Message ---
--- Begin Message --- Subject: Re: [bug#61376] [PATCH] gnu: Add havoc. Date: Sat, 11 Feb 2023 22:19:43 +0100 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux)
Hello,

Feng Shu <tumashu@163.com> writes:

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

Applied. Thank you.

Regards,
-- 
Nicolas Goaziou


--- End Message ---

reply via email to

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