guix-commits
[Top][All Lists]
Advanced

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

05/09: gnu: libyajl: Don't use unstable tarball.


From: guix-commits
Subject: 05/09: gnu: libyajl: Don't use unstable tarball.
Date: Mon, 11 Feb 2019 20:34:51 -0500 (EST)

nckx pushed a commit to branch master
in repository guix.

commit 2772debc747387744287eed9199fcdbd0345f895
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Sun Feb 10 19:37:42 2019 +0100

    gnu: libyajl: Don't use unstable tarball.
    
    * gnu/packages/web.scm (libyajl)[source]: Use GIT-FETCH and
    GIT-FILE-NAME.
---
 gnu/packages/web.scm | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index 7629353..c591ea0 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -786,13 +786,14 @@ style API.")
     (name "libyajl")
     (version "2.1.0")
     (source (origin
-              (method url-fetch)
-              (uri (string-append "https://github.com/lloyd/yajl/";
-                                  "archive/" version ".tar.gz"))
-              (file-name (string-append name "-" version ".tar.gz"))
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/lloyd/yajl.git";)
+                    (commit version)))
+              (file-name (git-file-name name version))
               (sha256
                (base32
-                "0nmcqpaiq4pv7dymyg3n3jsd57yhp5npxl26a1hzw3m3lmj37drz"))))
+                "00yj06drb6izcxfxfqlhimlrb089kka0w0x8k27pyzyiq7qzcvml"))))
     (build-system cmake-build-system)
     (arguments
      '(#:phases



reply via email to

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