gnu: ifdtool: Update to 4.9.
* gnu/packages/flashing-tools.scm (ifdtool): Update to 4.9. [source]: Update source URI.
This commit is contained in:
parent
f95114e5dd
commit
7d4cbd993d
|
@ -6,7 +6,7 @@
|
||||||
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; Copyright © 2017 Jonathan Brielmaier <jonathan.brielmaier@web.de>
|
;;; Copyright © 2017 Jonathan Brielmaier <jonathan.brielmaier@web.de>
|
||||||
;;; Copyright © 2017 Julien Lepiller <julien@lepiller.eu>
|
;;; Copyright © 2017 Julien Lepiller <julien@lepiller.eu>
|
||||||
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -341,16 +341,16 @@ referred to as the \"Odin 3 protocol\".")
|
||||||
(define-public ifdtool
|
(define-public ifdtool
|
||||||
(package
|
(package
|
||||||
(name "ifdtool")
|
(name "ifdtool")
|
||||||
(version "4.7")
|
(version "4.9")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://review.coreboot.org/p/coreboot")
|
(url "https://github.com/coreboot/coreboot.git")
|
||||||
(commit version)))
|
(commit version)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0nw555i0fm5kljha9h47bk70ykbwv8ddfk6qhz6kfqb79vzhy4h2"))))
|
"0jidj29jh6p65d17k304wlzhxvp4p3c2namgcdwg2sxq8jfr0zlm"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:make-flags
|
`(#:make-flags
|
||||||
|
@ -359,12 +359,12 @@ referred to as the \"Odin 3 protocol\".")
|
||||||
(string-append "PREFIX=" (assoc-ref %outputs "out")))
|
(string-append "PREFIX=" (assoc-ref %outputs "out")))
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'chdir
|
(add-after 'unpack 'chdir
|
||||||
(lambda _
|
(lambda _
|
||||||
(chdir "util/ifdtool")
|
(chdir "util/ifdtool")
|
||||||
#t))
|
#t))
|
||||||
(delete 'configure)
|
(delete 'configure)) ; no configure script
|
||||||
(delete 'check))))
|
#:tests? #f)) ; no test suite
|
||||||
(home-page "https://github.com/corna/me_cleaner/")
|
(home-page "https://github.com/corna/me_cleaner/")
|
||||||
(synopsis "Intel Firmware Descriptor dumper")
|
(synopsis "Intel Firmware Descriptor dumper")
|
||||||
(description "This package provides @command{ifdtool}, a program to
|
(description "This package provides @command{ifdtool}, a program to
|
||||||
|
|
Loading…
Reference in New Issue