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")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(method git-fetch)
|
||||
;; Fetch from github so tests are included.
|
||||
(uri (string-append
|
||||
"https://github.com/rubyworks/ae/archive/"
|
||||
version ".tar.gz"))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(uri (git-reference
|
||||
(url "https://github.com/rubyworks/ae")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"147jmkx54x7asy2d8m4dyrhhf4hdx4galpnhwzai030y3cdsfrrl"))))
|
||||
"11299jj5ma8mi7b4majkyjy70y6zlqpgl8aql1c5lvfjavlpwmlp"))))
|
||||
(build-system ruby-build-system)
|
||||
(arguments
|
||||
`(#:phases
|
||||
|
@ -6836,7 +6836,7 @@ (define-public ruby-ae
|
|||
(description
|
||||
"Assertive Expressive (AE) is an assertions library specifically designed
|
||||
for reuse by other test frameworks.")
|
||||
(home-page "https://rubyworks.github.io/ae")
|
||||
(home-page "https://rubyworks.github.io/ae/")
|
||||
(license license:bsd-2)))
|
||||
|
||||
(define-public ruby-lemon
|
||||
|
|
Loading…
Reference in a new issue