mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: font-adobe-source-code-pro: Don't use unstable tarball.
* gnu/packages/fonts.scm (font-adobe-source-code-pro)[source]: Use GIT-FETCH and GIT-FILE-NAME.
This commit is contained in:
parent
c7dd15596f
commit
9aee5c45c1
1 changed files with 12 additions and 12 deletions
|
@ -862,18 +862,18 @@ (define-public font-adobe-source-code-pro
|
|||
(package
|
||||
(name "font-adobe-source-code-pro")
|
||||
(version "2.030R-ro-1.050R-it")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"https://github.com/adobe-fonts/source-code-pro/archive/"
|
||||
(regexp-substitute/global
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/adobe-fonts/source-code-pro.git")
|
||||
(commit (regexp-substitute/global
|
||||
;; The upstream tag uses "/" between the roman and italic
|
||||
;; versions, so substitute our "-" separator here.
|
||||
#f "R-ro-" version 'pre "R-ro/" 'post) ".tar.gz"))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
#f "R-ro-" version 'pre "R-ro/" 'post))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0arhhsf3i7ss39ykn73d1j8k4n8vx7115xph6jwkd970p1cxvr54"))))
|
||||
(base32 "0hc5kflr8xzqgdm0c3gbgb1paygznxmnivkylid69ipc7wnicx1n"))))
|
||||
(build-system font-build-system)
|
||||
(home-page "https://github.com/adobe-fonts/source-code-pro")
|
||||
(synopsis
|
||||
|
|
Loading…
Reference in a new issue