mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 04:29:25 -05:00
gnu: hidapi: Don't use unstable tarball.
* gnu/packages/libusb.scm (hidapi)[source]: Use GIT-FETCH and GIT-FILE-NAME.
This commit is contained in:
parent
0a44f9c4e4
commit
b7dfc5a707
1 changed files with 8 additions and 7 deletions
|
@ -526,13 +526,14 @@ (define-public hidapi
|
|||
(package
|
||||
(name "hidapi")
|
||||
(version "0.8.0-rc1")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://github.com/signal11/hidapi/archive/hidapi-"
|
||||
version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0qdgyj9rgb7n0nk3ghfswrhzzknxqn4ibn3wj8g4r828pw07451w"))))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/signal11/hidapi.git")
|
||||
(commit (string-append "hidapi-" version))))
|
||||
(sha256
|
||||
(base32 "13d5jkmh9nh4c2kjch8k8amslnxapa9vkqzrk1z6rqmw8qgvzbkj"))))
|
||||
(build-system gnu-build-system)
|
||||
(inputs
|
||||
`(("libusb" ,libusb)
|
||||
|
|
Loading…
Reference in a new issue