mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-19 13:17:10 -05:00
gnu: texlive-latex-hyperref: Don't use unstable tarball.
* gnu/packages/tex.scm (texlive-latex-hyperref)[source]: Switch to GIT-FETCH.
This commit is contained in:
parent
3668405daa
commit
00f34c0057
1 changed files with 6 additions and 5 deletions
|
@ -2791,13 +2791,14 @@ (define-public texlive-latex-hyperref
|
||||||
;; The sources in the TeX Live SVN repository do not contain hluatex.dtx,
|
;; The sources in the TeX Live SVN repository do not contain hluatex.dtx,
|
||||||
;; so we fetch the release from GitHub.
|
;; so we fetch the release from GitHub.
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "https://github.com/ho-tex/hyperref/"
|
(uri (git-reference
|
||||||
"archive/release-" version ".tar.gz"))
|
(url "https://github.com/ho-tex/hyperref")
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(commit (string-append "release-" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1d3rmjgzh0025a1dza55zb6nzzlgd1y9snwx45wq1c1vf42m79h2"))))
|
"186x6qmzyr51sfi9zkpgf5js8mn0qfryqdvwbfg58pyilw1l3vkm"))))
|
||||||
(build-system texlive-build-system)
|
(build-system texlive-build-system)
|
||||||
(arguments '(#:tex-directory "latex/hyperref"))
|
(arguments '(#:tex-directory "latex/hyperref"))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
|
|
Loading…
Reference in a new issue