mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: js-es5-shim: Don't use unstable tarball.
* gnu/packages/javascript.scm (js-es5-shim)[source]: Use 'git-fetch'.
This commit is contained in:
parent
3500cb58f8
commit
2209a4476e
1 changed files with 6 additions and 5 deletions
|
@ -359,13 +359,14 @@ (define-public js-es5-shim
|
|||
(name "js-es5-shim")
|
||||
(version "4.5.9")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://github.com/es-shims/es5-shim/"
|
||||
"archive/v" version ".tar.gz"))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/es-shims/es5-shim")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0yfndyijz0ykddzprpvfjb2453gzpn528klmwycwbqc1bqd3m1hl"))))
|
||||
"03kp6iinnr8ky298k3cfa5rm2ykqfry1nd65dqaywc3i3fs3h43d"))))
|
||||
(build-system minify-build-system)
|
||||
(arguments `(#:javascript-files
|
||||
'("es5-sham.js"
|
||||
|
|
Loading…
Reference in a new issue