gnu: seabios: Update to 1.12.1.

This is a stable release despite the missing tarball.
<https://mail.coreboot.org/hyperkitty/list/seabios@seabios.org/thread/ONGRJVF3A45SAXOKBED52V2UD3YUWTRT/>

* gnu/packages/firmware.scm (seabios): Update to 1.12.1.
[source]: Use GIT-FETCH and GIT-FILE-NAME.
This commit is contained in:
Tobias Geerinckx-Rice 2019-05-09 16:34:28 +02:00
parent 05de4c346d
commit ae623b3f9d
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -186,19 +186,21 @@ (define-public openfwwf-firmware
(define-public seabios (define-public seabios
(package (package
(name "seabios") (name "seabios")
(version "1.12.0") (version "1.12.1")
(source (origin (source
(method url-fetch) (origin
(uri (string-append "https://www.seabios.org/downloads/" (method git-fetch)
"seabios-" version ".tar.gz")) (uri (git-reference
(url "https://review.coreboot.org/seabios.git")
(commit (string-append "rel-" version))))
(file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32 "1g9y03r5ky58q2g9rhbwfhs42z0zb9f59wfxpwh6zjqa6fyv1r80"))))
"0jx7pnsc2s4a7wbvvwqig6x8wmkw7f2sz0pbgj4jfp77cpjvh5yz"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(native-inputs (native-inputs
`(("python-2" ,python-2))) `(("python-2" ,python-2)))
(arguments (arguments
`(#:tests? #f ; No check target. `(#:tests? #f ; no check target
#:phases #:phases
(modify-phases %standard-phases (modify-phases %standard-phases
(replace 'configure (replace 'configure