mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-01 23:36:35 +01:00
gnu: heimdall: Don't use unstable tarball.
* gnu/packages/flashing-tools.scm (heimdall)[source]: Download using git-fetch. [home-page]: Use https.
This commit is contained in:
parent
02191009a5
commit
e9e8362611
1 changed files with 7 additions and 6 deletions
|
@ -295,13 +295,14 @@ (define-public heimdall
|
||||||
(name "heimdall")
|
(name "heimdall")
|
||||||
(version "1.4.2")
|
(version "1.4.2")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "https://github.com/Benjamin-Dobell/Heimdall"
|
(uri (git-reference
|
||||||
"/archive/v" version ".tar.gz"))
|
(url "https://github.com/Benjamin-Dobell/Heimdall.git")
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1y7gwg3lipyp2zcysm2vid1qg5nwin9bxbvgzs28lz2rya4fz6sq"))))
|
"1ygn4snvcmi98rgldgxf5hwm7zzi1zcsihfvm6awf9s6mpcjzbqz"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:build-type "Release"
|
`(#:build-type "Release"
|
||||||
|
@ -328,7 +329,7 @@ (define-public heimdall
|
||||||
`(("libusb" ,libusb)
|
`(("libusb" ,libusb)
|
||||||
("qtbase" ,qtbase)
|
("qtbase" ,qtbase)
|
||||||
("zlib" ,zlib)))
|
("zlib" ,zlib)))
|
||||||
(home-page "http://glassechidna.com.au/heimdall/")
|
(home-page "https://glassechidna.com.au/heimdall/")
|
||||||
(synopsis "Flash firmware onto Samsung mobile devices")
|
(synopsis "Flash firmware onto Samsung mobile devices")
|
||||||
(description "@command{heimdall} is a tool suite used to flash firmware (aka
|
(description "@command{heimdall} is a tool suite used to flash firmware (aka
|
||||||
ROMs) onto Samsung mobile devices. Heimdall connects to a mobile device over
|
ROMs) onto Samsung mobile devices. Heimdall connects to a mobile device over
|
||||||
|
|
Loading…
Reference in a new issue