mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-24 19:49:25 -05:00
gnu: ruby-ttfunk: Don't use unstable tarball.
* gnu/packages/ruby.scm (ruby-ttfunk)[source]: Download using git-fetch.
This commit is contained in:
parent
83870c32e8
commit
4e11082569
1 changed files with 6 additions and 6 deletions
|
@ -7013,15 +7013,15 @@ (define-public ruby-ttfunk
|
||||||
(version "1.5.1")
|
(version "1.5.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
;; fetch from github as the gem does not contain testing code
|
;; fetch from github as the gem does not contain testing code
|
||||||
(uri (string-append
|
(uri (git-reference
|
||||||
"https://github.com/prawnpdf/ttfunk/archive/"
|
(url "https://github.com/prawnpdf/ttfunk")
|
||||||
version ".tar.gz"))
|
(commit version)))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1ymcn12n5iws401yz03zsj8rr653fdqq13czsrciq09phgh9jzc5"))))
|
"0dx9891zcli0sjrslmsvrwalv86hbjbqlmbrcasnjr069v05h9v9"))))
|
||||||
(build-system ruby-build-system)
|
(build-system ruby-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:test-target "spec"
|
`(#:test-target "spec"
|
||||||
|
|
Loading…
Reference in a new issue