aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/nano.scm
blob: 1bb6fea889231691c3b4a0e4ca07b485aa994371 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2012 Nikita Karetnikov <nikita@karetnikov.org>
;;;
;;; This file is part of GNU Guix.
;;;
;;; GNU Guix is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GNU Guix is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.

(define-module (gnu packages nano)
  #:use-module (guix licenses)
  #:use-module (gnu packages gettext)
  #:use-module (gnu packages ncurses)
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module (guix build-system gnu))

(define-public nano
  (package
    (name "nano")
    (version "2.3.6")
    (source
     (origin
      (method url-fetch)
      (uri (string-append "mirror://gnu/nano/nano-"
                          version ".tar.gz"))
      (sha256
       (base32
        "0d4ml0v9yi37pjs211xs38w9whsj6530wz3kmrvwgh8jigqz6jx7"))))
    (build-system gnu-build-system)
    (inputs
     `(("gettext" ,gnu-gettext)
       ("ncurses" ,ncurses)))
    (home-page "http://www.nano-editor.org/")
    (synopsis "Small, user-friendly console text editor")
    (description
     "GNU Nano is a small and simple text editor.  In addition to basic
editing, it supports interactive search and replace, go to line and column
number, auto-indentation and more.")
    (license gpl3+))) ; some files are under GPLv2+
x/commit/tests?id=8af749224fd69daee5b67295186c77becb1a4479'>home: services: shells: Double-quote environment variable values....Ludovic Courtès 2022-07-13tests: build-emacs-utils: Allow test to pass on Emacs 27 too....Maxim Cournoyer 2022-07-10monads: Add 'mparameterize'....Ludovic Courtès 2022-07-08profiles: Support the creation of profiles with version 3 manifests....Ludovic Courtès 2022-07-08guix: inferior: Fix the behaviour of open-inferior #:error-port....Christopher Baines 2022-07-07tests: telephony: Remove obsolete parsing tests....Maxim Cournoyer 2022-07-04style: For 'let' and similar forms, emit one binding per line....Ludovic Courtès 2022-07-01tests: Adjust 'guix graph' test to latest OCaml changes....Ludovic Courtès 2022-07-01profiles: Do not repeat entries in 'manifest' file....Ludovic Courtès 2022-07-01tests: Augment profile collision test....Ludovic Courtès 2022-07-01tests: Add sanitizer test....Ludovic Courtès 2022-06-26status: Relay "updating substitutes" messages....Ludovic Courtès 2022-06-26status: Change tests from SRFI-11 to SRFI-71....Ludovic Courtès 2022-06-24services: configuration: Report the location of field type errors....Ludovic Courtès 2022-06-22style: Keep values next to their keyword....Ludovic Courtès 2022-06-17guix: emacs-utils: Add emacs-header-parse....Fredrik Salomonsson 2022-06-17guix: emacs-utils: Add emacs-batch-script....Fredrik Salomonsson 2022-06-16ui: Improve pager selection logic when less is not installed....Taiju HIGASHI 2022-06-16shell: Fix '--export-manifest' for cached profiles and when '-p' is used....Ludovic Courtès 2022-06-15import: Add hex.pm importer....Hartmut Goebel 2022-06-15services: configuration: Use *unspecified* instead of 'disabled....Attila Lendvai 2022-06-15services: configuration: Support (field1 maybe-number "") format....Attila Lendvai 2022-06-15system: <operating-system> compiler truly honors the 'system' argument....Ludovic Courtès 2022-06-06packages: Add 'specifications->packages'....Antero Mejr 2022-06-06import: hackage: Filter upper/mixed case dependencies too....Lars-Dominik Braun 2022-06-06import: hackage: Filter internal libraries from inputs and native-inputs....Lars-Dominik Braun 2022-06-06import: cabal: Support library names...Lars-Dominik Braun 2022-06-06import: cabal: Document failing syntax through tests....Lars-Dominik Braun 2022-06-06import: cabal: Allow curly bracket before else statement....Lars-Dominik Braun 2022-06-06import: cabal: Allow properties without space between key and value....Lars-Dominik Braun 2022-06-06import: cabal: Allow curly brackets in more positions....Lars-Dominik Braun 2022-06-06import: cabal: Support elif statement....Lars-Dominik Braun 2022-06-04home: services: Add 'lookup-home-service-types' procedure....Ludovic Courtès 2022-06-04cache: Catch invalid 'last-expiry-cleanup'....zimoun 2022-06-01shell: '--export-manifest -D x -D y' generates a valid manifest....Ludovic Courtès