guix-commits
[Top][All Lists]
Advanced

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

87/203: gnu: emacs-htmlize: Don't use unstable tarball.


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

nckx pushed a commit to branch master
in repository guix.

commit eb9305733e52cadf550650baae2de7bed93ac1b0
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Mon Apr 8 23:25:31 2019 +0200

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

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 6afced2..7c99b14 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -6633,14 +6633,13 @@ source file, @file{jl-encrypt.el}.")
     (version "1.53")
     (source
      (origin
-       (method url-fetch)
-       (uri (string-append
-             "https://github.com/hniksic/emacs-htmlize/archive/release/";
-             version ".tar.gz"))
-       (file-name (string-append name "-" version ".tar.gz"))
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/hniksic/emacs-htmlize.git";)
+             (commit (string-append "release/" version))))
+       (file-name (git-file-name name version))
        (sha256
-        (base32
-         "1lzaf9m1qr9dhw4nn53g6wszk2vqw95gpsbrc3y85bams4cn24ga"))))
+        (base32 "0dr235c0z8is3pi5xdgqyqljg6px0b2aya6qb79zkyi477bmz4ip"))))
     (build-system emacs-build-system)
     (home-page "https://github.com/hniksic/emacs-htmlize";)
     (synopsis "Convert buffer text and decorations to HTML")



reply via email to

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