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
|
@ -359,13 +359,14 @@ navigation; it is useful for tagging, contact lists, etc.")
|
||||||
(name "js-es5-shim")
|
(name "js-es5-shim")
|
||||||
(version "4.5.9")
|
(version "4.5.9")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "https://github.com/es-shims/es5-shim/"
|
(uri (git-reference
|
||||||
"archive/v" version ".tar.gz"))
|
(url "https://github.com/es-shims/es5-shim")
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0yfndyijz0ykddzprpvfjb2453gzpn528klmwycwbqc1bqd3m1hl"))))
|
"03kp6iinnr8ky298k3cfa5rm2ykqfry1nd65dqaywc3i3fs3h43d"))))
|
||||||
(build-system minify-build-system)
|
(build-system minify-build-system)
|
||||||
(arguments `(#:javascript-files
|
(arguments `(#:javascript-files
|
||||||
'("es5-sham.js"
|
'("es5-sham.js"
|
||||||
|
|
Loading…
Reference in New Issue