guix-commits
[Top][All Lists]
Advanced

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

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


From: guix-commits
Subject: 03/03: gnu: arc-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 bbf66cbf63f31aef82646ee29d643682c16f08aa
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Fri Nov 29 14:38:51 2019 +0100

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

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 96a46ab..15cd40d 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -7226,14 +7226,15 @@ simple and consistent.")
   (package
     (name "arc-icon-theme")
     (version "20161122")
-    (source (origin
-              (method url-fetch)
-              (uri (string-append "https://github.com/horst3180/arc-icon-theme";
-                                  "/archive/" version ".tar.gz"))
-              (file-name (string-append name "-" version ".tar.gz"))
-              (sha256
-               (base32
-                "1ya1cqvv8q847c0rpcg6apzky87q3h04y8jz5nmi52qk6kg8si0b"))))
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/horst3180/arc-icon-theme.git";)
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1ch3hp08qri93510hypzz6m2x4xgg2h15wvnhjwh1x1s1b7jvxjd"))))
     (build-system gnu-build-system)
     (arguments
      `(#:phases



reply via email to

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