guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/13: gnu: heimdall: Don't use unstable tarball.


From: guix-commits
Subject: 03/13: gnu: heimdall: Don't use unstable tarball.
Date: Wed, 20 Nov 2019 03:08:21 -0500 (EST)

efraim pushed a commit to branch master
in repository guix.

commit e9e836261167c375486bffce32a59bd06eeb3a0f
Author: Efraim Flashner <address@hidden>
Date:   Tue Nov 19 17:24:18 2019 +0200

    gnu: heimdall: Don't use unstable tarball.
    
    * gnu/packages/flashing-tools.scm (heimdall)[source]: Download using
    git-fetch.
    [home-page]: Use https.
---
 gnu/packages/flashing-tools.scm | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/flashing-tools.scm b/gnu/packages/flashing-tools.scm
index 51a0e0d..7aa8c63 100644
--- a/gnu/packages/flashing-tools.scm
+++ b/gnu/packages/flashing-tools.scm
@@ -295,13 +295,14 @@ RK3036, RK3066, RK312X, RK3168, RK3188, RK3288, RK3368.")
     (name "heimdall")
     (version "1.4.2")
     (source (origin
-              (method url-fetch)
-              (uri (string-append "https://github.com/Benjamin-Dobell/Heimdall";
-                                  "/archive/v" version ".tar.gz"))
-              (file-name (string-append name "-" version ".tar.gz"))
+              (method git-fetch)
+              (uri (git-reference
+                     (url "https://github.com/Benjamin-Dobell/Heimdall.git";)
+                     (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
               (sha256
                (base32
-                "1y7gwg3lipyp2zcysm2vid1qg5nwin9bxbvgzs28lz2rya4fz6sq"))))
+                "1ygn4snvcmi98rgldgxf5hwm7zzi1zcsihfvm6awf9s6mpcjzbqz"))))
     (build-system cmake-build-system)
     (arguments
      `(#:build-type "Release"
@@ -328,7 +329,7 @@ RK3036, RK3066, RK312X, RK3168, RK3188, RK3288, RK3368.")
      `(("libusb" ,libusb)
        ("qtbase" ,qtbase)
        ("zlib" ,zlib)))
-    (home-page "http://glassechidna.com.au/heimdall/";)
+    (home-page "https://glassechidna.com.au/heimdall/";)
     (synopsis "Flash firmware onto Samsung mobile devices")
     (description "@command{heimdall} is a tool suite used to flash firmware 
(aka
 ROMs) onto Samsung mobile devices.  Heimdall connects to a mobile device over



reply via email to

[Prev in Thread] Current Thread [Next in Thread]