gnu: Add emacs-slime.
[jackhill/guix/guix.git] / gnu / packages / ed.scm
CommitLineData
233e7676
LC
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2012 Nikita Karetnikov <nikita@karetnikov.org>
3f5497ee 3;;; Copyright © 2013, 2014 Ludovic Courtès <ludo@gnu.org>
0aa94f0c 4;;;
233e7676 5;;; This file is part of GNU Guix.
0aa94f0c 6;;;
233e7676 7;;; GNU Guix is free software; you can redistribute it and/or modify it
0aa94f0c
NK
8;;; under the terms of the GNU General Public License as published by
9;;; the Free Software Foundation; either version 3 of the License, or (at
10;;; your option) any later version.
11;;;
233e7676 12;;; GNU Guix is distributed in the hope that it will be useful, but
0aa94f0c
NK
13;;; WITHOUT ANY WARRANTY; without even the implied warranty of
14;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15;;; GNU General Public License for more details.
16;;;
17;;; You should have received a copy of the GNU General Public License
233e7676 18;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
0aa94f0c 19
1ffa7090 20(define-module (gnu packages ed)
4a44e743 21 #:use-module (guix licenses)
0aa94f0c
NK
22 #:use-module (guix packages)
23 #:use-module (guix download)
3f5497ee
LC
24 #:use-module (guix build-system gnu)
25 #:use-module (gnu packages compression))
0aa94f0c
NK
26
27(define-public ed
28 (package
29 (name "ed")
302af59f 30 (version "1.12")
b39a48ad
LC
31 (source (origin
32 (method url-fetch)
33 (uri (string-append "mirror://gnu/ed/ed-"
3f5497ee 34 version ".tar.lz"))
b39a48ad
LC
35 (sha256
36 (base32
302af59f 37 "0bw0187a311rci58vznvncsj6pfp8bhs5phrlrqn03sa2i1mfrfj"))))
0aa94f0c 38 (build-system gnu-build-system)
3f5497ee 39 (native-inputs `(("lzip" ,lzip)))
9589eecb
LC
40 (arguments
41 '(#:configure-flags '("CC=gcc")
42 #:phases (alist-cons-before 'patch-source-shebangs 'patch-test-suite
43 (lambda _
44 (substitute* "testsuite/check.sh"
45 (("/bin/sh") (which "sh"))))
46 %standard-phases)))
0aa94f0c 47 (home-page "http://www.gnu.org/software/ed/")
f50d2669 48 (synopsis "Line-oriented text editor")
0aa94f0c 49 (description
a22dc0c4 50 "Ed is a line-oriented text editor: rather than offering an overview of
79c311b8 51a document, ed performs editing one line at a time. It can be executed both
a22dc0c4 52interactively and via shell scripts. Its method of command input allows
c5779c93 53complex tasks to be performed in an automated way. GNU ed offers several
79c311b8 54extensions over the standard utility.")
4a44e743 55 (license gpl3+)))