GNU bug report logs -
#61376
[PATCH] gnu: Add havoc.
Previous Next
Reported by: Feng Shu <tumashu <at> 163.com>
Date: Thu, 9 Feb 2023 02:17:01 UTC
Severity: normal
Tags: patch
Done: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
Bug is archived. No further changes may be made.
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 61376 in the body.
You can then email your comments to 61376 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#61376
; Package
guix-patches
.
(Thu, 09 Feb 2023 02:17:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Feng Shu <tumashu <at> 163.com>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Thu, 09 Feb 2023 02:17:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
From 08038bf6660768d462f65be64cd0d43cd50f1052 Mon Sep 17 00:00:00 2001
From: Feng Shu <tumashu <at> 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
--
Reply sent
to
Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
:
You have taken responsibility.
(Sat, 11 Feb 2023 21:20:02 GMT)
Full text and
rfc822 format available.
Notification sent
to
Feng Shu <tumashu <at> 163.com>
:
bug acknowledged by developer.
(Sat, 11 Feb 2023 21:20:02 GMT)
Full text and
rfc822 format available.
Message #10 received at 61376-done <at> debbugs.gnu.org (full text, mbox):
Hello,
Feng Shu <tumashu <at> 163.com> writes:
> * gnu/packages/terminals.scm (havoc): New variable.
Applied. Thank you.
Regards,
--
Nicolas Goaziou
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Sun, 12 Mar 2023 11:24:15 GMT)
Full text and
rfc822 format available.
This bug report was last modified 2 years and 97 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.