mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
gnu: Add js-selectize.
* gnu/packages/javascript.scm (js-selectize): New variable.
This commit is contained in:
parent
c4abc94d2b
commit
4f65067bde
1 changed files with 21 additions and 0 deletions
|
@ -276,3 +276,24 @@ (define-public js-datatables
|
||||||
Javascript library, adding sorting, paging and filtering abilities to plain
|
Javascript library, adding sorting, paging and filtering abilities to plain
|
||||||
HTML tables with minimal effort.")
|
HTML tables with minimal effort.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public js-selectize
|
||||||
|
(package
|
||||||
|
(name "js-selectize")
|
||||||
|
(version "0.12.4")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "https://github.com/selectize/selectize.js/"
|
||||||
|
"archive/v" version ".tar.gz"))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0756p49aaz34mw2dx8k1gxf210mngfrri25vkba0j7wihd2af8gn"))))
|
||||||
|
(build-system minify-build-system)
|
||||||
|
(arguments `(#:javascript-files '("src/selectize.js")))
|
||||||
|
(home-page "http://selectize.github.io/selectize.js/")
|
||||||
|
(synopsis "Hybrid widget between a textbox and <select> box")
|
||||||
|
(description "Selectize is the hybrid of a textbox and @code{<select>}
|
||||||
|
box. It's jQuery based and it has autocomplete and native-feeling keyboard
|
||||||
|
navigation; it is useful for tagging, contact lists, etc.")
|
||||||
|
(license license:asl2.0)))
|
||||||
|
|
Loading…
Reference in a new issue