me
/
guix
Archived
1
0
Fork 0

gnu: hidapi: Don't use unstable tarball.

* gnu/packages/libusb.scm (hidapi)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
master
Tobias Geerinckx-Rice 2020-01-17 23:20:38 +01:00
parent 0a44f9c4e4
commit b7dfc5a707
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 8 additions and 7 deletions

View File

@ -526,13 +526,14 @@ devices.")
(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"))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/signal11/hidapi.git")
(commit (string-append "hidapi-" version))))
(sha256
(base32
"0qdgyj9rgb7n0nk3ghfswrhzzknxqn4ibn3wj8g4r828pw07451w"))))
(base32 "13d5jkmh9nh4c2kjch8k8amslnxapa9vkqzrk1z6rqmw8qgvzbkj"))))
(build-system gnu-build-system)
(inputs
`(("libusb" ,libusb)