gnu: commencement: Add gawk-mesboot.

* gnu/packages/commencement.scm (gawk-mesboot): New variable.
This commit is contained in:
Jan Nieuwenhuizen 2019-11-22 20:56:32 +01:00
parent 635ec0f43a
commit 53d5cb253b
No known key found for this signature in database
GPG key ID: F3C1A0D9C1D65273

View file

@ -1821,6 +1821,42 @@ (define make-mesboot
(install-file "make" bin)
#t))))))))
(define gawk-mesboot
(package
(inherit gawk)
(name "gawk-mesboot")
(version "3.1.8")
(source (origin
(method url-fetch)
(uri (string-append "mirror://gnu/gawk/gawk-"
version ".tar.gz"))
(sha256
(base32
"03d5y7jabq7p2s7ys9alay9446mm7i5g2wvy8nlicardgb6b6ii1"))))
(native-inputs `(,@(%boot-mesboot0-inputs)
("mesboot-headers" ,mesboot-headers)))
(supported-systems '("i686-linux" "x86_64-linux"))
(inputs '())
(propagated-inputs '())
(arguments
`(#:implicit-inputs? #f
#:parallel-build? #f
#:guile ,%bootstrap-guile
#:configure-flags '("ac_cv_func_connect=no")
#:make-flags '("gawk")
#:phases
(modify-phases %standard-phases
(replace 'check
(lambda _
(invoke "./gawk" "--version")))
(replace 'install
(lambda* (#:key outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out"))
(bin (string-append out "/bin")))
(install-file "gawk" bin)
(symlink "gawk" (string-append bin "/awk"))
#t))))))))
(define binutils-mesboot
(package
(inherit binutils-mesboot0)