mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: ruby-ae: Don't use unstable tarball.
* gnu/packages/ruby.scm (ruby-ae)[source]: Download using git-fetch.
This commit is contained in:
parent
b872b47bf1
commit
11d1b31807
1 changed files with 7 additions and 7 deletions
|
@ -6802,15 +6802,15 @@ (define-public ruby-ae
|
||||||
(version "1.8.2")
|
(version "1.8.2")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
;; Fetch from github so tests are included.
|
;; Fetch from github so tests are included.
|
||||||
(uri (string-append
|
(uri (git-reference
|
||||||
"https://github.com/rubyworks/ae/archive/"
|
(url "https://github.com/rubyworks/ae")
|
||||||
version ".tar.gz"))
|
(commit version)))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"147jmkx54x7asy2d8m4dyrhhf4hdx4galpnhwzai030y3cdsfrrl"))))
|
"11299jj5ma8mi7b4majkyjy70y6zlqpgl8aql1c5lvfjavlpwmlp"))))
|
||||||
(build-system ruby-build-system)
|
(build-system ruby-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
|
@ -6836,7 +6836,7 @@ (define-public ruby-ae
|
||||||
(description
|
(description
|
||||||
"Assertive Expressive (AE) is an assertions library specifically designed
|
"Assertive Expressive (AE) is an assertions library specifically designed
|
||||||
for reuse by other test frameworks.")
|
for reuse by other test frameworks.")
|
||||||
(home-page "https://rubyworks.github.io/ae")
|
(home-page "https://rubyworks.github.io/ae/")
|
||||||
(license license:bsd-2)))
|
(license license:bsd-2)))
|
||||||
|
|
||||||
(define-public ruby-lemon
|
(define-public ruby-lemon
|
||||||
|
|
Loading…
Reference in a new issue