gnu: 0xffff: Update to 0.10.
* gnu/packages/flashing-tools.scm (0xffff): Update to 0.10. [arguments]: Use gexps. Change-Id: Ifb54578deb016a88e6314ecb7d16966c9294d7b3 Signed-off-by: Jonathan Brielmaier <jonathan.brielmaier@web.de>master
parent
e4ee595999
commit
6faf82c7e9
|
@ -13,6 +13,7 @@
|
||||||
;;; Copyright © 2022 Peter Polidoro <peter@polidoro.io>
|
;;; Copyright © 2022 Peter Polidoro <peter@polidoro.io>
|
||||||
;;; Copyright © 2023 B. Wilson <x@wilsonb.com>
|
;;; Copyright © 2023 B. Wilson <x@wilsonb.com>
|
||||||
;;; Copyright © 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
;;; Copyright © 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
||||||
|
;;; Copyright © 2024 Artyom V. Poptsov <poptsov.artyom@gmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -112,7 +113,7 @@ programmer devices.")
|
||||||
(define-public 0xffff
|
(define-public 0xffff
|
||||||
(package
|
(package
|
||||||
(name "0xffff")
|
(name "0xffff")
|
||||||
(version "0.9")
|
(version "0.10")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -121,22 +122,21 @@ programmer devices.")
|
||||||
(commit version)))
|
(commit version)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0rl1xzbxl991pm2is98zbryac1lgjrc3zphmbd8agv07av0r6r6n"))))
|
(base32 "1nqbrr64kjr0h3h6gzhrj1vd106nni4y9mhjdr8mh2x9lcgn4fj5"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(inputs
|
(inputs
|
||||||
;; Building with libusb-compat will succeed but the result will be broken.
|
;; Building with libusb-compat will succeed but the result will be broken.
|
||||||
;; See <https://github.com/pali/0xFFFF/issues/3>.
|
;; See <https://github.com/pali/0xFFFF/issues/3>.
|
||||||
(list libusb-0.1))
|
(list libusb-0.1))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
(list
|
||||||
(modify-phases %standard-phases
|
#:phases #~(modify-phases %standard-phases
|
||||||
(delete 'configure)) ; no configure
|
(delete 'configure)) ;no configure
|
||||||
#:make-flags
|
#:make-flags #~(list (string-append "CC="
|
||||||
(list (string-append "CC=" ,(cc-for-target))
|
#$(cc-for-target)) "HOST_CC=gcc"
|
||||||
"HOST_CC=gcc"
|
"BUILD_DATE=GNU Guix"
|
||||||
"BUILD_DATE=GNU Guix"
|
(string-append "PREFIX=" %output))
|
||||||
(string-append "PREFIX=" %output))
|
#:tests? #f)) ;no 'check' target
|
||||||
#:tests? #f)) ; no 'check' target
|
|
||||||
(home-page "https://github.com/pali/0xFFFF")
|
(home-page "https://github.com/pali/0xFFFF")
|
||||||
(synopsis "Flash FIASCO images on Maemo devices")
|
(synopsis "Flash FIASCO images on Maemo devices")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in New Issue