guix-commits
[Top][All Lists]
Advanced

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

02/07: gnu: make-lua-sec: Don't use unstable tarball.


From: guix-commits
Subject: 02/07: gnu: make-lua-sec: Don't use unstable tarball.
Date: Mon, 6 Jan 2020 08:04:47 -0500 (EST)

efraim pushed a commit to branch master
in repository guix.

commit b63785ec79b6d31d423e986000946e3883397eea
Author: Efraim Flashner <address@hidden>
AuthorDate: Mon Jan 6 14:29:37 2020 +0200

    gnu: make-lua-sec: Don't use unstable tarball.
    
    * gnu/packages/lua.scm (make-lua-sec)[source]: Download using git-fetch.
---
 gnu/packages/lua.scm | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/lua.scm b/gnu/packages/lua.scm
index df040cb..cf1282f 100644
--- a/gnu/packages/lua.scm
+++ b/gnu/packages/lua.scm
@@ -295,12 +295,14 @@ directory structure and file attributes.")
     (name name)
     (version "0.7")
     (source (origin
-              (method url-fetch)
-              (uri (string-append "https://github.com/brunoos/luasec/archive/";
-                                  "luasec-" version ".tar.gz"))
+              (method git-fetch)
+              (uri (git-reference
+                     (url "https://github.com/brunoos/luasec";)
+                     (commit (string-append "luasec-" version))))
+              (file-name (git-file-name name version))
               (sha256
                (base32
-                "0c9sdz3gvrsbvvdqzpnsappgwl40hfljlpfybqis6wia3mdyjxi1"))))
+                "1w2w030jn4lgbkmzp7j3znmj856vfj0ca8sn8r444r5zhmihd761"))))
     (build-system gnu-build-system)
     (arguments
      `(#:make-flags



reply via email to

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