gnu: dfu-programmer: Update to 1.1.0.

* gnu/packages/flashing-tools.scm (dfu-programmer): Update to 1.1.0.
[source]: Switch to git-fetch.
[native-inputs]: Add autoconf and automake.

Change-Id: Ib8cd7c1734fa36def23ccdba669b285871182f51
This commit is contained in:
Zheng Junjie 2025-07-10 19:58:39 +08:00 committed by Andreas Enge
parent d178aa7203
commit fc3f57c380
No known key found for this signature in database
GPG key ID: F7D5C9BF765C61E3

View file

@ -180,19 +180,20 @@ technique.")
(define-public dfu-programmer (define-public dfu-programmer
(package (package
(name "dfu-programmer") (name "dfu-programmer")
(version "0.7.2") (version "1.1.0")
(source (source
(origin (origin
(method url-fetch) (method git-fetch)
(uri (string-append "mirror://sourceforge/dfu-programmer/dfu-programmer/" (uri (git-reference
version "/dfu-programmer-" version ".tar.gz")) (url "https://github.com/dfu-programmer/dfu-programmer")
(sha256 (commit (string-append "v" version))))
(base32 (file-name (git-file-name name version))
"15gr99y1z9vbvhrkd25zqhnzhg6zjmaam3vfjzf2mazd39mx7d0x")) (sha256
(patches (search-patches "dfu-programmer-fix-libusb.patch")))) (base32
"1y9ayl97qdy36bmlcf5vrg85jn72pgx7blgxd1albk79r87q2632"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(native-inputs (native-inputs
(list pkg-config)) (list autoconf automake pkg-config))
(inputs (inputs
(list libusb)) (list libusb))
(home-page "https://dfu-programmer.github.io/") (home-page "https://dfu-programmer.github.io/")