me
/
guix
Archived
1
0
Fork 0

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

* gnu/packages/ruby.scm (ruby-ae)[source]: Download using git-fetch.
master
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
1 changed files with 7 additions and 7 deletions

View File

@ -6802,15 +6802,15 @@ and locking between worker processes.")
(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 @@ and locking between worker processes.")
(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