aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/ed.scm
blob: c2198763ef99b629885998913bea8f9921829cdb (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
56
57
58
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2012 Nikita Karetnikov <nikita@karetnikov.org>
;;; Copyright © 2013, 2014 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2016, 2019 Efraim Flashner <efraim@flashner.co.il>
;;;
;;; 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.15")
    (source (origin
             (method url-fetch)
             (uri (string-append "mirror://gnu/ed/ed-"
                                 version ".tar.lz"))
             (sha256
              (base32
               "0x6ivy5k0d7dy5z9g8q8nipr89m4qbk2ink2898qq43smp08ji5d"))))
    (build-system gnu-build-system)
    (native-inputs `(("lzip" ,lzip)))
    (arguments
     '(#:configure-flags '("CC=gcc")
       #:phases
       (modify-phases %standard-phases
         (add-before 'patch-source-shebangs 'patch-test-suite
                     (lambda _
                       (substitute* "testsuite/check.sh"
                         (("/bin/sh") (which "sh")))
                       #t)))))
    (home-page "https://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+)))
/td>Ludovic Courtès 2019-09-22gnu: Add coin3D....John Soo 2019-09-17Merge branch 'master' into core-updatesLudovic Courtès 2019-09-11gnu: Add opencsg....Steve Sprang 2019-09-06Merge branch 'master' into core-updatesMark H Weaver 2019-08-31gnu: Move non-compilers out of haskell.scm....Robert Vollmert 2019-08-22Merge branch 'master' into core-updatesMark H Weaver 2019-08-13gnu: Blender: Use opensubdiv....Carlo Zancanaro 2019-08-13gnu: Add opensubdiv....Carlo Zancanaro 2019-08-13Merge branch 'master' into core-updatesMarius Bakke 2019-07-31gnu: blender: Remove stale warning about it being an RC build....Mark H Weaver 2019-07-31gnu: Remove workarounds for <https://bugs.gnu.org/36721>....Marius Bakke 2019-07-31Merge branch 'master' into core-updatesMarius Bakke 2019-07-30gnu: Blender: Update to 2.80....Leo Famulari 2019-07-18gnu: openimageio: Fix build with Boost 1.70 and CMake 3.14....Marius Bakke 2019-07-12gnu: Blender: Update to 2.80-rc1....Leo Famulari 2019-07-12gnu: OpenImageIO: Update to 1.8.17....Leo Famulari 2019-04-14gnu: Add openscenegraph-3.4....Ricardo Wurmus 2019-03-28gnu: ogre: Don't use unstable tarball....Efraim Flashner 2019-03-28gnu: googletest: Don't use unstable tarball....Efraim Flashner 2019-03-20gnu: blender: Restore version 2.79b for systems without OpenGL 3....Mark H Weaver 2019-01-25gnu: brdf-explorer: Unconditionally return #T from build phases....Ricardo Wurmus 2019-01-15gnu: Separate Python core packages from the rest....Ricardo Wurmus 2019-01-09gnu: Blender: Update to a beta release of 2.80....Leo Famulari 2018-11-30gnu: blender: Use newer ffmpeg....Efraim Flashner 2018-10-09* gnu: agg: Replace bootstrap phase....Efraim Flashner 2018-10-09gnu: agg: Don't build examples....Efraim Flashner 2018-09-21gnu: openscenegraph: Update to 3.6.3....Tobias Geerinckx-Rice 2018-09-03gnu: openexr: Update to 2.3.0....Marius Bakke 2018-09-03gnu: ilmbase: Update to 2.3.0....Marius Bakke 2018-08-05gnu: Add povray....Kei Kebreau