mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: commencement: Add sed-mesboot.
* gnu/packages/commencement.scm (sed-mesboot): New variable.
This commit is contained in:
parent
53d5cb253b
commit
aad146a0bb
1 changed files with 32 additions and 0 deletions
|
@ -1857,6 +1857,38 @@ (define gawk-mesboot
|
|||
(symlink "gawk" (string-append bin "/awk"))
|
||||
#t))))))))
|
||||
|
||||
(define sed-mesboot
|
||||
(package
|
||||
(inherit sed)
|
||||
(name "sed-mesboot")
|
||||
(version "4.0.6") ; 2003-04
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://gnu/sed/sed-"
|
||||
version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0861ij94cqc4vaaki6r2wlapwcmhpx4ggp4r70f46mb21a8fkvf1"))))
|
||||
(native-inputs (%boot-mesboot0-inputs))
|
||||
(supported-systems '("i686-linux" "x86_64-linux"))
|
||||
(inputs '())
|
||||
(propagated-inputs '())
|
||||
(arguments
|
||||
`(#:implicit-inputs? #f
|
||||
#:parallel-build? #f
|
||||
#:guile ,%bootstrap-guile
|
||||
#:tests? #f ; 8to7 fails
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack '/bin/sh
|
||||
(lambda _
|
||||
(let* ((bash (assoc-ref %build-inputs "bash"))
|
||||
(shell (string-append bash "/bin/bash")))
|
||||
(substitute* "testsuite/Makefile.tests"
|
||||
(("^SHELL = /bin/sh")
|
||||
(string-append "SHELL = " shell)))
|
||||
#t))))))))
|
||||
|
||||
(define binutils-mesboot
|
||||
(package
|
||||
(inherit binutils-mesboot0)
|
||||
|
|
Loading…
Reference in a new issue