gnu: ruby-ae: Don't use unstable tarball.

* gnu/packages/ruby.scm (ruby-ae)[source]: Download using git-fetch.
This commit is contained in:
Efraim Flashner 2019-12-28 22:48:02 +02:00
parent b872b47bf1
commit 11d1b31807
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -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