GNU bug report logs -
#76273
[PATCH v1 00/10] gnu: Add micro.
Previous Next
Full log
View this message in rfc822 format
* gnu/packages/text-editors.scm (micro): New variable.
Change-Id: Ib6009701b96b2d534a2fae365fcf9ce8a04f9340
---
gnu/packages/text-editors.scm | 49 +++++++++++++++++++++++++++++++++++
1 file changed, 49 insertions(+)
diff --git a/gnu/packages/text-editors.scm b/gnu/packages/text-editors.scm
index f52bc092f1..a0bff1aa5f 100644
--- a/gnu/packages/text-editors.scm
+++ b/gnu/packages/text-editors.scm
@@ -35,6 +35,7 @@
;;; Copyright © 2024 Herman Rimm <herman <at> rimm.ee>
;;; Copyright © 2024 Spencer King <spencer.king <at> wustl.edu>
;;; Copyright © 2024 Murilo <murilo <at> disroot.org>
+;;; Copyright © 2025 Ashvith Shetty <ashvithshetty0010 <at> zohomail.in>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -61,6 +62,7 @@ (define-module (gnu packages text-editors)
#:use-module (guix build-system cargo)
#:use-module (guix build-system cmake)
#:use-module (guix build-system gnu)
+ #:use-module (guix build-system go)
#:use-module (guix build-system glib-or-gtk)
#:use-module (guix build-system meson)
#:use-module (guix build-system python)
@@ -90,6 +92,9 @@ (define-module (gnu packages text-editors)
#:use-module (gnu packages freedesktop)
#:use-module (gnu packages gettext)
#:use-module (gnu packages glib)
+ #:use-module (gnu packages golang-build)
+ #:use-module (gnu packages golang-check)
+ #:use-module (gnu packages golang-xyz)
#:use-module (gnu packages graphics)
#:use-module (gnu packages gnome)
#:use-module (gnu packages gtk)
@@ -153,6 +158,50 @@ (define-public ed
extensions over the standard utility.")
(license license:gpl3+)))
+(define-public micro
+ (package
+ (name "micro")
+ (version "2.0.14")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/zyedidia/micro")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1pcfsaq7k6q59vh3xgh8gy350apkv5rkc09d4fh15lx7m6bxbwka"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:install-source? #f
+ #:import-path "github.com/zyedidia/micro/cmd/micro"
+ #:unpack-path "github.com/zyedidia/micro"))
+ (inputs (list go-github-com-layeh-gopher-luar
+ go-github-com-zyedidia-go-runewidth
+ go-github-com-zyedidia-go-shellquote
+ go-gopkg-in-yaml-v2
+ go-golang-org-x-text
+ go-github-com-zyedidia-tcell
+ go-github-com-zyedidia-terminal
+ go-github-com-zyedidia-json5
+ go-github-com-zyedidia-glob
+ go-github-com-zyedidia-clipper
+ go-github-com-yuin-gopher-lua
+ go-github-com-stretchr-testify
+ go-github-com-sergi-go-diff
+ go-github-com-mitchellh-go-homedir
+ go-github-com-mattn-go-isatty
+ go-github-com-go-errors-errors
+ go-github-com-dustin-go-humanize
+ go-github-com-blang-semver))
+ (home-page "https://github.com/zyedidia/micro")
+ (synopsis "Modern and intuitive terminal-based text editor")
+ (description
+ "@code{micro} is a terminal-based text editor that aims to be easy to use and
+intuitive, while also taking advantage of the capabilities of modern terminals.")
+ (license license:expat)))
+
(define-public lem
(let ((commit "534cb9f2e1e1b0ffbdf4552a39801deec21a76f8")
(revision "3"))
--
2.48.1
This bug report was last modified 96 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.