summaryrefslogtreecommitdiff
path: root/gnu/packages/flashing-tools.scm
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <me@tobias.gr>2019-02-24 12:19:12 +0100
committerTobias Geerinckx-Rice <me@tobias.gr>2019-02-24 13:37:04 +0100
commit03df9e5a1e525afda2560ffccc7ac6f0b451efc0 (patch)
tree1af2fe1b5b6bfbd047e1cbd8cb361ca13728e464 /gnu/packages/flashing-tools.scm
parent1a753385c7dd72784939511d6e0dc276b4c51c0f (diff)
downloadguix-patches-03df9e5a1e525afda2560ffccc7ac6f0b451efc0.tar
guix-patches-03df9e5a1e525afda2560ffccc7ac6f0b451efc0.tar.gz
gnu: 0xffff: Update to 0.8.
* gnu/packages/flashing-tools.scm (0xffff): Update to 0.8. [arguments]: Build man page reproducibly.
Diffstat (limited to 'gnu/packages/flashing-tools.scm')
-rw-r--r--gnu/packages/flashing-tools.scm15
1 files changed, 9 insertions, 6 deletions
diff --git a/gnu/packages/flashing-tools.scm b/gnu/packages/flashing-tools.scm
index aeef2f340c..9f621378c0 100644
--- a/gnu/packages/flashing-tools.scm
+++ b/gnu/packages/flashing-tools.scm
@@ -97,7 +97,7 @@ programmer devices.")
(define-public 0xffff
(package
(name "0xffff")
- (version "0.7")
+ (version "0.8")
(source
(origin
(method url-fetch)
@@ -106,16 +106,19 @@ programmer devices.")
(file-name (string-append "0xFFFF" version ".tar.gz" ))
(sha256
(base32
- "1g4032c81wkk37wvbg1dxcqq6mnd76y9x7f2crmzqi6z4q9jcxmj"))))
+ "1kk25m2gs417mfhwaq43d62yy5rsjb7llr07zf5aqx31csln3q8k"))))
(build-system gnu-build-system)
(inputs
- `(("libusb" ,libusb-0.1))) ; doesn't work with libusb-compat
+ `(("libusb" ,libusb-0.1))) ; doesn't work with libusb-compat
(arguments
'(#:phases
(modify-phases %standard-phases
- (delete 'configure)) ; no configure
- #:make-flags (list (string-append "PREFIX=" %output))
- #:tests? #f)) ; no 'check' target
+ (delete 'configure)) ; no configure
+ #:make-flags
+ (list "CC=gcc"
+ "BUILD_DATE=GNU Guix"
+ (string-append "PREFIX=" %output))
+ #:tests? #f)) ; no 'check' target
(home-page "https://github.com/pali/0xFFFF")
(synopsis "Flash FIASCO images on Maemo devices")
(description