mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: ruby-sass-spec: Don't use unstable tarball.
* gnu/packages/ruby.scm (ruby-sass-spec)[source]: Use GIT-FETCH and GIT-FILE-NAME.
This commit is contained in:
parent
e405f996e9
commit
11df832143
1 changed files with 9 additions and 8 deletions
|
@ -7680,14 +7680,15 @@ (define-public ruby-sass-spec
|
|||
(package
|
||||
(name "ruby-sass-spec")
|
||||
(version "3.5.4")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://github.com/sass/sass-spec/archive/v"
|
||||
version ".tar.gz"))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0nx8lp7c9qa58w489crgqa3c489xsyarn1a8h4np9mwwfqm1h3rr"))))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/sass/sass-spec.git")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1zsw66830w0xlc7kxz6fm4b5nyb44vdsdgm9mgy06s5aixx83pwr"))))
|
||||
(build-system ruby-build-system)
|
||||
(propagated-inputs
|
||||
`(("ruby-command-line-reporter-3" ,ruby-command-line-reporter-3)
|
||||
|
|
Loading…
Reference in a new issue