guix-commits
[Top][All Lists]
Advanced

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

02/07: gnu: i3lock-color: Don't use unstable tarball.


From: guix-commits
Subject: 02/07: gnu: i3lock-color: Don't use unstable tarball.
Date: Fri, 8 Mar 2019 20:33:51 -0500 (EST)

nckx pushed a commit to branch master
in repository guix.

commit f45cc966baffb061353cf9f9ead4667b2af82efc
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Fri Mar 8 16:10:39 2019 +0100

    gnu: i3lock-color: Don't use unstable tarball.
    
    * gnu/packages/wm.scm (i3lock-color)[source]: Use GIT-FETCH and
    GIT-FILE-NAME.
---
 gnu/packages/wm.scm | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index 06dada2..6801013 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -392,16 +392,16 @@ prompt.")
     (version "2.11-c")
     (source
      (origin
-       (method url-fetch)
-       (uri (string-append "https://github.com/PandorasFox/i3lock-color/";
-                           "archive/" version ".tar.gz"))
-       (file-name (string-append name "-" version ".tar.gz"))
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/PandorasFox/i3lock-color.git";)
+             (commit version)))
+       (file-name (git-file-name name version))
        (sha256
-        (base32
-         "0zh7il2y6dmzym3w6r9xii5dma8pjjjlq4dm5iby7m3gvplj4q9p"))))
+        (base32 "1myq9fazkwd776agrnj27bm5nwskvss9v9a5qb77n037dv8d0rdw"))))
     (build-system gnu-build-system)
     (arguments
-     `(#:tests? #f))                              ;no tests included
+     `(#:tests? #f))                    ; no tests included
     (inputs
      `(("cairo" ,cairo)
        ("libev" ,libev)



reply via email to

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