mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: 0xffff: Don't use unstable tarball.
* gnu/packages/flashing-tools.scm (0xffff)[source]: Use GIT-FETCH and GIT-FILE-NAME.
This commit is contained in:
parent
03df9e5a1e
commit
659afdae5e
1 changed files with 7 additions and 7 deletions
|
@ -100,13 +100,13 @@ (define-public 0xffff
|
|||
(version "0.8")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://github.com/pali/0xffff/archive/"
|
||||
version ".tar.gz"))
|
||||
(file-name (string-append "0xFFFF" version ".tar.gz" ))
|
||||
(sha256
|
||||
(base32
|
||||
"1kk25m2gs417mfhwaq43d62yy5rsjb7llr07zf5aqx31csln3q8k"))))
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/pali/0xffff.git")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1a5b7k96vzirb0m8lqp7ldn77ppz4ngf56wslhsj2c6flcyvns4v"))))
|
||||
(build-system gnu-build-system)
|
||||
(inputs
|
||||
`(("libusb" ,libusb-0.1))) ; doesn't work with libusb-compat
|
||||
|
|
Loading…
Reference in a new issue