mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 13:09:23 -05:00
gnu: sed: Update to 4.7.
* gnu/packages/base.scm (sed): Update to 4.7. [arguments]: Remove.
This commit is contained in:
parent
b659e97adc
commit
dad2e7dc79
1 changed files with 2 additions and 14 deletions
|
@ -128,28 +128,16 @@ (define-public grep
|
||||||
(define-public sed
|
(define-public sed
|
||||||
(package
|
(package
|
||||||
(name "sed")
|
(name "sed")
|
||||||
(version "4.5")
|
(version "4.7")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://gnu/sed/sed-" version
|
(uri (string-append "mirror://gnu/sed/sed-" version
|
||||||
".tar.xz"))
|
".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0h3b2jfj57wmz680vkbyavlsrkak556qhvs7m7fdlawwhg477bbs"))))
|
"0smxcx66vx29djzb542nxcynl7qnzxqa5032ibazi7x2s267d198"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(synopsis "Stream editor")
|
(synopsis "Stream editor")
|
||||||
(arguments
|
|
||||||
`(#:phases
|
|
||||||
(modify-phases %standard-phases
|
|
||||||
(add-after 'unpack 'dont-rebuild-sed.1
|
|
||||||
(lambda _
|
|
||||||
;; Make sure we do not attempt to rebuild 'doc/sed.1', which does
|
|
||||||
;; not work when cross-compiling because we cannot run 'sed'.
|
|
||||||
;; This is fixed upstream as commit a0a25e3.
|
|
||||||
(substitute* "Makefile.in"
|
|
||||||
(("^doc/sed\\.1:.*")
|
|
||||||
"doc/sed.1:\n"))
|
|
||||||
#t)))))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("perl" ,perl))) ;for tests
|
`(("perl" ,perl))) ;for tests
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in a new issue