guix-commits
[Top][All Lists]
Advanced

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

02/03: gnu: moka-icon-theme: Don't use unstable tarball.


From: guix-commits
Subject: 02/03: gnu: moka-icon-theme: Don't use unstable tarball.
Date: Fri, 29 Nov 2019 08:39:57 -0500 (EST)

nckx pushed a commit to branch master
in repository guix.

commit 8c3f2170c433ae01f52fd5bcaad61a729b8f9a5e
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Fri Nov 29 14:25:41 2019 +0100

    gnu: moka-icon-theme: Don't use unstable tarball.
    
    * gnu/packages/gnome.scm (moka-icon-theme)[source]: Use GIT-FETCH and
    GIT-FILE-NAME, and follow upstream redirection.
---
 gnu/packages/gnome.scm | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 04a891d..96a46ab 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -7203,15 +7203,15 @@ Moka")
     (inherit faba-icon-theme)
     (name "moka-icon-theme")
     (version "5.4.0")
-    (source (origin
-              (method url-fetch)
-              (uri (string-append "https://github.com/moka-project";
-                                  "/moka-icon-theme/archive/v"
-                                  version ".tar.gz"))
-              (file-name (string-append name "-" version ".tar.gz"))
-              (sha256
-               (base32
-                "1nbwdjj268hxv9lfagd9aylily9f0hhallp841v0i3imljp84bmk"))))
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/snwh/moka-icon-theme.git";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "015l02im4mha5z91dbchxf6xkp66d346bg3xskwg0rh3lglhjsrd"))))
     (propagated-inputs
      ;; Moka is based on Faba by using it as a fallback icon set instead of
      ;; bundling it, so we need to add it as a propagated input.



reply via email to

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