aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/nano.scm
blob: 04877f33baac1b42233077510db5c61815014401 (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
50
51
52
53
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2012 Nikita Karetnikov <nikita@karetnikov.org>
;;; Copyright © 2015, 2016, 2017, 2018 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2016 Rene Saavedra <rennes@openmailbox.org>
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
;;;
;;; 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 "4.0")
    (source
     (origin
      (method url-fetch)
      (uri (string-append "mirror://gnu/nano/nano-"
                          version ".tar.xz"))
      (sha256
       (base32
        "1hxsx6qi7897d8bwkbnijlwvnn1dfy5pd1b7v2kj8ikq6pmcybqy"))))
    (build-system gnu-build-system)
    (inputs
     `(("gettext" ,gettext-minimal)
       ("ncurses" ,ncurses)))
    (home-page "https://www.nano-editor.org/")
    (synopsis "Small, user-friendly console text editor")
    (description
     "GNU nano is a small and simple text editor for use in a terminal.  Besides
basic editing, it supports: undo/redo, syntax highlighting, spell checking,
justifying, auto-indentation, bracket matching, interactive search-and-replace
(with regular expressions), and the editing of multiple files.")
    (license gpl3+))) ; some files are under GPLv2+
onts.scm?id=7fd5f901f692fcaef2e9a262fcda082c96cf2775'>gnu: Add Iosevka quasi-proportioal fonts....Simen Endsjø 2020-06-18gnu: Update Iosevka fonts from 2.3.3 to 3.1.1....Simen Endsjø 2020-06-17gnu: font-sarasa-gothic: Update to 0.12.7...Zhu Zihao 2020-06-08gnu: font-liberation: Update to 2.1.1....Marius Bakke 2020-05-30gnu: fonts.scm: Add missing '>' in copyright header....Marius Bakke 2020-05-30gnu: font-tamzen: Update to 1.11.5....Tobias Geerinckx-Rice 2020-05-30gnu: Add font-sarasa-gothic....Zhu Zihao 2020-05-29gnu: font-comic-neue: Update to 2.5....Tobias Geerinckx-Rice 2020-05-25gnu: font-gnu-unifont: Update to 13.0.02....Efraim Flashner 2020-05-21gnu: font-abattis-cantarell: Update to 0.201....Tobias Geerinckx-Rice 2020-05-16gnu: Add font-api-mj-mincho....Julien Lepiller 2020-05-13gnu: font-gnu-freefont: Rename the ‘woff’ subdirectory....Michael Rohleder 2020-05-13gnu: font-gnu-freefont: Revert fonts' subdirectory names....Raghav Gururajan 2020-05-13mailmap: Update entries for Nikita....nikita 2020-04-24gnu: font-gnu-freefont: Build with an older version of FontForge....Marius Bakke 2020-04-23gnu: GNU FreeFont: Add a deprecated alias for "font-gnu-freefont-ttf"....Leo Famulari 2020-04-22gnu: font-gnu-freefont: Add otf and woff font types....Raghav Gururajan 2020-04-22gnu: Add font-meera-inimai....Arun Isaac 2020-04-02gnu: Add font-iosevka-term....John Soo 2020-04-02gnu: Add font-iosevka-term-slab....John Soo 2020-04-01gnu: font-gnu-unifont: Update to 13.0.01....Efraim Flashner 2020-03-31gnu: font-rachana: Don't use unstable tarball....Tobias Geerinckx-Rice 2020-03-31gnu: font-rachana: Update to 7.0.3....Tobias Geerinckx-Rice 2020-03-29gnu: font-jetbrains-mono: Update to 1.0.3....Michael Rohleder 2020-03-28Update email address and Savannah handle for Amin Bandali....Amin Bandali 2020-03-10gnu: font-dosis: Use archive.org'd URIs....Tobias Geerinckx-Rice 2020-03-08gnu: Add font-opendyslexic....Efraim Flashner 2020-02-25gnu: font-fantasque-sans: Update to 1.8.0....Tobias Geerinckx-Rice 2020-02-23gnu: font-google-material-design-icons: Use HTTPS home page....Tobias Geerinckx-Rice