guix-commits
[Top][All Lists]
Advanced

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

09/19: gnu: sfarklib: Don't use unstable tarball.


From: guix-commits
Subject: 09/19: gnu: sfarklib: Don't use unstable tarball.
Date: Mon, 25 Nov 2019 07:08:54 -0500 (EST)

efraim pushed a commit to branch master
in repository guix.

commit d40362f4258e835131ac95930440ef711ca1e78c
Author: Efraim Flashner <address@hidden>
Date:   Sun Nov 24 19:23:56 2019 +0200

    gnu: sfarklib: Don't use unstable tarball.
    
    * gnu/packages/compression.scm (sfarklib)[source]: Download using
    git-fetch.
---
 gnu/packages/compression.scm | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm
index 5583c8a..326b0a4 100644
--- a/gnu/packages/compression.scm
+++ b/gnu/packages/compression.scm
@@ -650,13 +650,14 @@ This package is mostly for compatibility and historical 
interest.")
     (name "sfarklib")
     (version "2.24")
     (source (origin
-              (method url-fetch)
-              (uri (string-append "https://github.com/raboof/sfArkLib/archive/";
-                                  version ".tar.gz"))
-              (file-name (string-append name "-" version ".tar.gz"))
+              (method git-fetch)
+              (uri (git-reference
+                     (url "https://github.com/raboof/sfArkLib.git";)
+                     (commit version)))
+              (file-name (git-file-name name version))
               (sha256
                (base32
-                "0bzs2d98rk1xw9qwpnc7gmlbxwmwc3dg1rpn310afy9pq1k9clzi"))))
+                "0jrxy24gak7q5ml06p5jjgzk9i5r2mkfjk4ycirkp4kg7k5a237w"))))
     (build-system gnu-build-system)
     (arguments
      `(#:tests? #f ;no "check" target



reply via email to

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