aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/ed.scm
blob: 7cd1fcd71df6af550d20e9c433cdba8e642d13b7 (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
54
55
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2012 Nikita Karetnikov <nikita@karetnikov.org>
;;; Copyright © 2013, 2014 Ludovic Courtès <ludo@gnu.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 ed)
  #:use-module (guix licenses)
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module (guix build-system gnu)
  #:use-module (gnu packages compression))

(define-public ed
  (package
    (name "ed")
    (version "1.12")
    (source (origin
             (method url-fetch)
             (uri (string-append "mirror://gnu/ed/ed-"
                                 version ".tar.lz"))
             (sha256
              (base32
               "0bw0187a311rci58vznvncsj6pfp8bhs5phrlrqn03sa2i1mfrfj"))))
    (build-system gnu-build-system)
    (native-inputs `(("lzip" ,lzip)))
    (arguments
     '(#:configure-flags '("CC=gcc")
       #:phases (alist-cons-before 'patch-source-shebangs 'patch-test-suite
                                   (lambda _
                                     (substitute* "testsuite/check.sh"
                                       (("/bin/sh") (which "sh"))))
                                   %standard-phases)))
    (home-page "http://www.gnu.org/software/ed/")
    (synopsis "Line-oriented text editor")
    (description
     "Ed is a line-oriented text editor: rather than offering an overview of
a document, ed performs editing one line at a time.  It can be executed both
interactively and via shell scripts.  Its method of command input allows
complex tasks to be performed in an automated way.  GNU ed offers several
extensions over the standard utility.")
    (license gpl3+)))
d>Ludovic Courtès 2016-05-04utils: Move combinators to (guix combinators)....Ludovic Courtès 2016-04-14packages: Add 'search-patches'....Alex Kost 2016-03-08packages: Gracefully report packages not found....Ludovic Courtès 2016-03-08packages: Support the deprecated "NAME-VERSION" syntax....Ludovic Courtès 2016-03-08packages: Clarify NAME-VERSION deprecation message....Ludovic Courtès 2016-03-02utils: Use '@' for separating package names and version numbers....Mathieu Lirzin 2016-03-02packages: Factorize package specification search....Mathieu Lirzin 2016-02-24Do not check package freshness during upgrade....Alex Kost 2015-12-20packages: Remove now redundant graph procedures....Ludovic Courtès 2015-10-21packages: Update 'check-package-freshness' to use (guix upstream)....Ludovic Courtès 2015-06-18Move 'specification->package+output' to (gnu packages)....Ludovic Courtès 2015-04-18packages: Allow package lookups with version prefixes....Ludovic Courtès 2015-04-08Merge branch 'master' into core-updates宋文武 2015-04-07gnu: Emit a warning when a package module cannot be loaded....Ludovic Courtès 2015-04-03packages: Fix typo....Alex Kost 2015-01-26gnu: Raise an error when a bootstrap binary is not found....Ludovic Courtès