guix-commits
[Top][All Lists]
Advanced

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

52/203: gnu: emacs-zenburn-theme: Don't use unstable tarball.


From: guix-commits
Subject: 52/203: gnu: emacs-zenburn-theme: Don't use unstable tarball.
Date: Wed, 10 Apr 2019 14:57:16 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit e6745025c15241a8cd157bc954bdba56019bca4a
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Fri Apr 5 04:13:29 2019 +0200

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

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 7a92cd0..e8849c1 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -3656,15 +3656,15 @@ organizer.")
   (package
     (name "emacs-zenburn-theme")
     (version "2.6")
-    (source (origin
-              (method url-fetch)
-              (uri (string-append
-                    "https://github.com/bbatsov/zenburn-emacs/archive/v";
-                    version ".tar.gz"))
-              (file-name (string-append name "-" version ".tar.gz"))
-              (sha256
-               (base32
-                "0qc9d1rwq55yzh8shbppyd6izy1grpyr8kqh5zdgm7c5jccngpr4"))))
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/bbatsov/zenburn-emacs.git";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1n87r5hs7h5r8dgfid66skpzcypl9hssr9m3npp916g6jfsi782f"))))
     (build-system emacs-build-system)
     (home-page "https://github.com/bbatsov/zenburn-emacs";)
     (synopsis "Low contrast color theme for Emacs")



reply via email to

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