guix-commits
[Top][All Lists]
Advanced

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

03/05: gnu: lua-libmpack: Do not use unstable source tarball.


From: guix-commits
Subject: 03/05: gnu: lua-libmpack: Do not use unstable source tarball.
Date: Mon, 15 Jul 2019 13:17:06 -0400 (EDT)

mbakke pushed a commit to branch core-updates
in repository guix.

commit 2ec3df7019073a2825e2a105acb6ac6a111c2db7
Author: Marius Bakke <address@hidden>
Date:   Mon Jul 15 18:44:01 2019 +0200

    gnu: lua-libmpack: Do not use unstable source tarball.
    
    * gnu/packages/serialization.scm (lua-libmpack)[source]: Change to 
GIT-FETCH.
---
 gnu/packages/serialization.scm | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/serialization.scm b/gnu/packages/serialization.scm
index 505c196..2d50756 100644
--- a/gnu/packages/serialization.scm
+++ b/gnu/packages/serialization.scm
@@ -169,13 +169,14 @@ that implements both the msgpack and msgpack-rpc 
specifications.")
   (package (inherit libmpack)
     (name "lua-libmpack")
     (source (origin
-              (method url-fetch)
-              (uri (string-append "https://github.com/libmpack/libmpack-lua/";
-                                  "archive/" (package-version libmpack) 
".tar.gz"))
-              (file-name (string-append name "-" (package-version libmpack) 
".tar.gz"))
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/libmpack/libmpack-lua";)
+                    (commit (package-version libmpack))))
+              (file-name (git-file-name name (package-version libmpack)))
               (sha256
                (base32
-                "153zrrbyxhf71dgzjjhrk56rfwk3nisslpgcqyg44v8fnz1xpk6i"))))
+                "10zx4biyi9gmk90aa6674vvqsrz74jy74fxqlcrx66c8sl8yxr92"))))
     (build-system gnu-build-system)
     (arguments
      `(;; FIXME: tests require "busted", which is not yet available in Guix.



reply via email to

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