guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/03: gnu: seabios: Update to 1.12.1.


From: guix-commits
Subject: 03/03: gnu: seabios: Update to 1.12.1.
Date: Thu, 9 May 2019 15:18:02 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit ae623b3f9d53c054cc9cd794108d9df6b02ff570
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Thu May 9 16:34:28 2019 +0200

    gnu: seabios: Update to 1.12.1.
    
    This is a stable release despite the missing tarball.
    
<https://mail.coreboot.org/hyperkitty/list/address@hidden/thread/ONGRJVF3A45SAXOKBED52V2UD3YUWTRT/>
    
    * gnu/packages/firmware.scm (seabios): Update to 1.12.1.
    [source]: Use GIT-FETCH and GIT-FILE-NAME.
---
 gnu/packages/firmware.scm | 20 +++++++++++---------
 1 file changed, 11 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/firmware.scm b/gnu/packages/firmware.scm
index 4df4b22..90cb884 100644
--- a/gnu/packages/firmware.scm
+++ b/gnu/packages/firmware.scm
@@ -186,19 +186,21 @@ by the b43-open driver of Linux-libre.")
 (define-public seabios
   (package
     (name "seabios")
-    (version "1.12.0")
-    (source (origin
-              (method url-fetch)
-              (uri (string-append "https://www.seabios.org/downloads/";
-                                  "seabios-" version ".tar.gz"))
-              (sha256
-               (base32
-                "0jx7pnsc2s4a7wbvvwqig6x8wmkw7f2sz0pbgj4jfp77cpjvh5yz"))))
+    (version "1.12.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://review.coreboot.org/seabios.git";)
+             (commit (string-append "rel-" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1g9y03r5ky58q2g9rhbwfhs42z0zb9f59wfxpwh6zjqa6fyv1r80"))))
     (build-system gnu-build-system)
     (native-inputs
      `(("python-2" ,python-2)))
     (arguments
-     `(#:tests? #f ; No check target.
+     `(#:tests? #f                      ; no check target
        #:phases
        (modify-phases %standard-phases
          (replace 'configure



reply via email to

[Prev in Thread] Current Thread [Next in Thread]