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