guix-commits
[Top][All Lists]
Advanced

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

03/07: gnu: lua-lgi: Don't use unstable tarball.


From: guix-commits
Subject: 03/07: gnu: lua-lgi: 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 bf73eb142b911c8ea1f21ca80ead94e6a269c9df
Author: Efraim Flashner <address@hidden>
AuthorDate: Mon Jan 6 14:31:20 2020 +0200

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

diff --git a/gnu/packages/lua.scm b/gnu/packages/lua.scm
index cf1282f..34d86cf 100644
--- a/gnu/packages/lua.scm
+++ b/gnu/packages/lua.scm
@@ -344,14 +344,14 @@ secure session between the peers.")
     (version "0.9.2")
     (source
       (origin
-        (method url-fetch)
-        (uri (string-append
-              "https://github.com/pavouk/lgi/archive/";
-              version ".tar.gz"))
-        (file-name (string-append name "-" version ".tar.gz"))
+        (method git-fetch)
+        (uri (git-reference
+               (url "https://github.com/pavouk/lgi";)
+               (commit version)))
+        (file-name (git-file-name name version))
         (sha256
-          (base32
-            "0kwcaj3ahi9gxfyp0lr5zgr6vi1mgsg9sz0980x0nwxlh9a11i6g"))))
+         (base32
+          "03rbydnj411xpjvwsyvhwy4plm96481d7jax544mvk7apd8sd5jj"))))
     (build-system gnu-build-system)
     (arguments
      '(#:make-flags (list "CC=gcc"



reply via email to

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