gnu: js-selectize: Don't use unstable tarball.

* gnu/packages/javascript.scm (js-selectize)[source]: Use 'git-fetch'.
master
Efraim Flashner 2019-09-08 16:02:40 +03:00
parent 778f4430e0
commit 4151447897
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 6 additions and 5 deletions

View File

@ -337,13 +337,14 @@ HTML tables with minimal effort.")
(name "js-selectize") (name "js-selectize")
(version "0.12.4") (version "0.12.4")
(source (origin (source (origin
(method url-fetch) (method git-fetch)
(uri (string-append "https://github.com/selectize/selectize.js/" (uri (git-reference
"archive/v" version ".tar.gz")) (url "https://github.com/selectize/selectize.js")
(file-name (string-append name "-" version ".tar.gz")) (commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32
"0756p49aaz34mw2dx8k1gxf210mngfrri25vkba0j7wihd2af8gn")))) "1l6gdl9v9z0xb1yl81ssaqm067imjbxwbpa76nd0cyrx0jskih22"))))
(build-system minify-build-system) (build-system minify-build-system)
(arguments `(#:javascript-files '("src/selectize.js"))) (arguments `(#:javascript-files '("src/selectize.js")))
(home-page "http://selectize.github.io/selectize.js/") (home-page "http://selectize.github.io/selectize.js/")