me
/
guix
Archived
1
0
Fork 0

gnu: Add js-datatables.

* gnu/packages/javascript.scm (js-datatables): New variable.
master
Ricardo Wurmus 2017-08-03 15:55:05 +02:00
parent a6bbb2a0d8
commit c4abc94d2b
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 24 additions and 0 deletions

View File

@ -252,3 +252,27 @@ It works in the browser as well as on the server. It works with pretty much
any markup, doesnt depend on any framework and has automatic language any markup, doesnt depend on any framework and has automatic language
detection.") detection.")
(license license:bsd-3))) (license license:bsd-3)))
(define-public js-datatables
(package
(name "js-datatables")
(version "1.10.15")
(source (origin
(method url-fetch)
(uri (string-append "https://datatables.net/releases/DataTables-"
version ".zip"))
(sha256
(base32
"1y9xqyqyz7x1ls3ska71pshl2hpiy3qnw1f7wygyslbhy4ssgf57"))))
(build-system minify-build-system)
(arguments
`(#:javascript-files '("media/js/dataTables.bootstrap.js"
"media/js/jquery.dataTables.js")))
(native-inputs
`(("unzip" ,unzip)))
(home-page "https://datatables.net")
(synopsis "DataTables plug-in for jQuery")
(description "DataTables is a table enhancing plug-in for the jQuery
Javascript library, adding sorting, paging and filtering abilities to plain
HTML tables with minimal effort.")
(license license:expat)))