distro: Add GNU Nano.
[jackhill/guix/guix.git] / distro / packages / nano.scm
CommitLineData
7f40d97d
NK
1;;; Guix --- Nix package management from Guile. -*- coding: utf-8 -*-
2;;; Copyright (C) 2012 Nikita Karetnikov <nikita@karetnikov.org>
3;;;
4;;; This file is part of Guix.
5;;;
6;;; Guix is free software; you can redistribute it and/or modify it
7;;; under the terms of the GNU General Public License as published by
8;;; the Free Software Foundation; either version 3 of the License, or (at
9;;; your option) any later version.
10;;;
11;;; Guix is distributed in the hope that it will be useful, but
12;;; WITHOUT ANY WARRANTY; without even the implied warranty of
13;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14;;; GNU General Public License for more details.
15;;;
16;;; You should have received a copy of the GNU General Public License
17;;; along with Guix. If not, see <http://www.gnu.org/licenses/>.
18
19(define-module (distro packages nano)
20 #:use-module (distro packages gettext)
21 #:use-module (distro packages ncurses)
22 #:use-module (guix packages)
23 #:use-module (guix download)
24 #:use-module (guix build-system gnu))
25
26(define-public nano
27 (package
28 (name "nano")
29 (version "2.2.6")
30 (source
31 (origin
32 (method url-fetch)
33 (uri (string-append "mirror://gnu/nano/nano-"
34 version ".tar.gz"))
35 (sha256
36 (base32
37 "0yp6pid67k8h7394spzw0067fl2r7rxm2b6kfccg87g8nlry2s5y"))))
38 (build-system gnu-build-system)
39 (inputs
40 `(("gettext" ,gettext)
41 ("ncurses" ,ncurses)))
42 (home-page "http://www.nano-editor.org/")
43 (synopsis
44 "A small, user-friendly console text editor")
45 (description
46 "GNU nano is designed to be a free replacement for the Pico text
47editor, part of the Pine email suite from The University of
48Washington. It aims to emulate Pico as closely as possible and perhaps
49include extra functionality.")
50 (license "GPLv3+"))) ; some files are under GPLv2+