guix-commits
[Top][All Lists]
Advanced

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

05/05: gnu: texlive-latex-hyperref: Don't use unstable tarball.


From: guix-commits
Subject: 05/05: gnu: texlive-latex-hyperref: Don't use unstable tarball.
Date: Sun, 20 Dec 2020 17:41:23 -0500 (EST)

mbakke pushed a commit to branch core-updates
in repository guix.

commit 00f34c00577f7c8fb8d79b7fb6112ad10f9e9e53
Author: Marius Bakke <marius@gnu.org>
AuthorDate: Sun Dec 20 19:39:49 2020 +0100

    gnu: texlive-latex-hyperref: Don't use unstable tarball.
    
    * gnu/packages/tex.scm (texlive-latex-hyperref)[source]: Switch to 
GIT-FETCH.
---
 gnu/packages/tex.scm | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 1002fcd..4e7196e 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -2791,13 +2791,14 @@ tables.")
     ;; The sources in the TeX Live SVN repository do not contain hluatex.dtx,
     ;; so we fetch the release from GitHub.
     (source (origin
-              (method url-fetch)
-              (uri (string-append "https://github.com/ho-tex/hyperref/";
-                                  "archive/release-" version ".tar.gz"))
-              (file-name (string-append name "-" version ".tar.gz"))
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/ho-tex/hyperref";)
+                    (commit (string-append "release-" version))))
+              (file-name (git-file-name name version))
               (sha256
                (base32
-                "1d3rmjgzh0025a1dza55zb6nzzlgd1y9snwx45wq1c1vf42m79h2"))))
+                "186x6qmzyr51sfi9zkpgf5js8mn0qfryqdvwbfg58pyilw1l3vkm"))))
     (build-system texlive-build-system)
     (arguments '(#:tex-directory "latex/hyperref"))
     (propagated-inputs



reply via email to

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