GNU bug report logs -
#76635
[PATCH v2] gnu: Add dte.
Previous Next
Reported by: ashish.is <at> lostca.se
Date: Fri, 28 Feb 2025 09:45:04 UTC
Severity: normal
Tags: patch
Done: Andreas Enge <andreas <at> enge.fr>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your message dated Thu, 3 Apr 2025 17:05:40 +0200
with message-id <Z-6jxGyQsMoIRkNe <at> jurong>
and subject line Close
has caused the debbugs.gnu.org bug report #76635,
regarding [PATCH v2] gnu: Add dte.
to be marked as done.
(If you believe you have received this mail in error, please contact
help-debbugs <at> gnu.org.)
--
76635: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=76635
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
From: Ashish SHUKLA <ashish.is <at> lostca.se>
* gnu/packages/text-editors.scm (dte): New variable.
Change-Id: I1fdee33377b055a43cf61364f43a6dcbaf04a024
---
Hi,
This patch adds dte, a console based text editor, which is fairly fast, portable, and has a few modern features.
Thanks!
gnu/packages/text-editors.scm | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/gnu/packages/text-editors.scm b/gnu/packages/text-editors.scm
index e96fceb510..d006b7909d 100644
--- a/gnu/packages/text-editors.scm
+++ b/gnu/packages/text-editors.scm
@@ -37,6 +37,7 @@
;;; Copyright © 2024 Murilo <murilo <at> disroot.org>
;;; Copyright © 2025 Ashvith Shetty <ashvithshetty0010 <at> zohomail.in>
;;; Copyright © 2025 Sharlatan Hellseher <sharlatanus <at> gmail.com>
+;;; Copyright © 2025 Ashish SHUKLA <ashish.is <at> lostca.se>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -104,6 +105,7 @@ (define-module (gnu packages text-editors)
#:use-module (gnu packages image)
#:use-module (gnu packages lesstif)
#:use-module (gnu packages libbsd)
+ #:use-module (gnu packages linux)
#:use-module (gnu packages lisp-check)
#:use-module (gnu packages lisp-xyz)
#:use-module (gnu packages llvm)
@@ -1898,3 +1900,34 @@ (define-public xnedit
"XNEdit is a fast and classic X11 text editor, based on NEdit,
with full unicode support and antialiased text rendering.")
(license license:gpl2+)))
+
+(define-public dte
+ (package
+ (name "dte")
+ (version "1.11.1")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://gitlab.com/craigbarnes/dte")
+ (commit (string-append "v" version))))
+ (sha256
+ (base32
+ "1q43jvhj6r1ws58ngpcq8mzj4di7mj2a4bmigk9zy0f3riagnlv1"))))
+ (build-system gnu-build-system)
+ (native-inputs
+ (list util-linux))
+ (arguments
+ (list
+ #:make-flags
+ #~(list (string-append "CC=" #$(cc-for-target))
+ (string-append "prefix=" #$output))
+ #:phases
+ #~(modify-phases %standard-phases
+ (delete 'configure))))
+ (home-page "https://gitlab.com/craigbarnes/dte/")
+ (synopsis "Small and easy to use console text editor.")
+ (description
+ "@command{dte} is a portable console text editor with features like multiple buffers/tabs,
+syntax highlighting, customizable color scheme (including support for 24-bit true
+colours), kitty keyboard protocol, editorconfig support, amongst other features.")
+ (license license:gpl2)))
base-commit: a76708a872e65230931f3c5c3b079d0a39d5cb84
--
2.48.1
[Message part 3 (message/rfc822, inline)]
Pushed, thanks!
Andreas
This bug report was last modified 105 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.