diff options
| author | Nikita Karetnikov <nikita@karetnikov.org> | 2012-11-25 03:14:01 +0000 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2012-11-25 16:08:10 +0100 |
| commit | 7f40d97d88271e8a66eeb7d4739e09937353e8db (patch) | |
| tree | 1abf9e384f0c7748bccc365261f1127cbbe805c6 | |
| parent | c80e7e55b37575baa310b1c5e6ed10903904b8d6 (diff) | |
distro: Add GNU Nano.
* distro/packages/nano.scm: New file.
* Makefile.am (MODULES): Add it.
| -rw-r--r-- | Makefile.am | 1 | ||||
| -rw-r--r-- | distro/packages/nano.scm | 50 |
2 files changed, 51 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index a974f414b19..c37fcf6c8ba 100644 --- a/Makefile.am +++ b/Makefile.am | |||
| @@ -67,6 +67,7 @@ MODULES = \ | |||
| 67 | distro/packages/m4.scm \ | 67 | distro/packages/m4.scm \ |
| 68 | distro/packages/make-bootstrap.scm \ | 68 | distro/packages/make-bootstrap.scm \ |
| 69 | distro/packages/multiprecision.scm \ | 69 | distro/packages/multiprecision.scm \ |
| 70 | distro/packages/nano.scm \ | ||
| 70 | distro/packages/ncurses.scm \ | 71 | distro/packages/ncurses.scm \ |
| 71 | distro/packages/nettle.scm \ | 72 | distro/packages/nettle.scm \ |
| 72 | distro/packages/perl.scm \ | 73 | distro/packages/perl.scm \ |
diff --git a/distro/packages/nano.scm b/distro/packages/nano.scm new file mode 100644 index 00000000000..e4a39a8b271 --- /dev/null +++ b/distro/packages/nano.scm | |||
| @@ -0,0 +1,50 @@ | |||
| 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 | ||
| 47 | editor, part of the Pine email suite from The University of | ||
| 48 | Washington. It aims to emulate Pico as closely as possible and perhaps | ||
| 49 | include extra functionality.") | ||
| 50 | (license "GPLv3+"))) ; some files are under GPLv2+ \ No newline at end of file | ||
