aboutsummaryrefslogtreecommitdiff
path: root/gn/packages/javascript.scm
diff options
context:
space:
mode:
authorEfraim Flashner2019-07-21 01:44:20 -0500
committerEfraim Flashner2019-07-21 02:49:00 -0500
commitd5c450d66ed4dad3e6574a27571816a354f9ebda (patch)
treefcd5bdadb984cd07469bc16d439a4dba42fc9203 /gn/packages/javascript.scm
parent05c481ae432c9b9e9db1a5d9fbeceddfc6cb678d (diff)
downloadguix-bioinformatics-d5c450d66ed4dad3e6574a27571816a354f9ebda.tar.gz
gn: javascript-datatables: Update to 1.10.19.
* gn/packages/javascript.scm (javascript-datatables): Update to 1.10.19. [source]: Download using git-fetch. [native-inputs]: Remove gzip, tar. [inputs]: Move javascript-cytoscape ... [propagated-inputs]: ... to here. [arguments]: Adjust accordingly. [home-page]; Update home-page. [synopsis]: Update synopsis. [description]: Flesh out description.
Diffstat (limited to 'gn/packages/javascript.scm')
-rw-r--r--gn/packages/javascript.scm69
1 files changed, 29 insertions, 40 deletions
diff --git a/gn/packages/javascript.scm b/gn/packages/javascript.scm
index 9b8d006..f50394a 100644
--- a/gn/packages/javascript.scm
+++ b/gn/packages/javascript.scm
@@ -1,14 +1,8 @@
(define-module (gn packages javascript)
#:use-module ((guix licenses) #:prefix license:)
- #:use-module (gnu packages base)
- #:use-module (gnu packages compression)
#:use-module (gn packages web)
- #:use-module (gnu packages)
#:use-module (guix packages)
- #:use-module (guix download)
#:use-module (guix git-download)
- #:use-module (guix utils)
- #:use-module (guix build-system gnu)
#:use-module (guix build-system trivial)
#:use-module (srfi srfi-1))
@@ -172,40 +166,35 @@ traditional UI -- similar to controls on map webapps.")
(description "Cytoscape.")
(license license:expat)))
-;; https://github.com/DataTables/DataTables/archive/1.10.12.tar.gz
(define-public javascript-datatables
(package
- (name "javascript-datatables")
- (version "1.10.12") ; ancient version
- (source
- (origin
- (method url-fetch)
- (uri (string-append "https://github.com/DataTables/DataTables/archive/" version ".tar.gz"))
- (file-name (string-append name "-" version ".tar.gz"))
- (sha256
- (base32 "0blzsd2zqmvnqi6pl1xq0dr457kjrdaaa86d2cmdakls0j2mj92s"))))
- (inputs `(("javascript-cytoscape" ,javascript-cytoscape)))
- (build-system trivial-build-system)
- (native-inputs `(("gzip" ,gzip)
- ("tar" ,tar)
- ("source" ,source)))
- (arguments
- `(#:modules ((guix build utils))
- #:builder
- (begin
- (use-modules (guix build utils))
- (let* ((out (assoc-ref %outputs "out"))
- (tarcmd (string-append (assoc-ref %build-inputs "tar") "/bin/tar"))
- (targetdir (string-append out "/share/genenetwork2/javascript/DataTables"))
- (source (assoc-ref %build-inputs "source")))
- (setenv "PATH" (string-append
- (assoc-ref %build-inputs "tar") "/bin" ":"
- (assoc-ref %build-inputs "gzip") "/bin"))
- (invoke "tar" "xvf" (assoc-ref %build-inputs "source") "--strip-components=1")
- (mkdir-p targetdir)
- (copy-recursively "media" targetdir)
- ))))
- (home-page "https://github.com/DataTables/")
- (synopsis "Datatables")
- (description "Datatables.")
+ (name "javascript-datatables")
+ (version "1.10.19") ; June 22, 2018
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/DataTables/DataTables.git")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0p85xzcvfjdrs4nwj7lhnlw2dmyky0hkwy8bzjw2fdabmsrdpwyg"))))
+ (build-system trivial-build-system)
+ (arguments
+ `(#:modules ((guix build utils))
+ #:builder
+ (begin
+ (use-modules (guix build utils))
+ (let* ((out (assoc-ref %outputs "out"))
+ (targetdir (string-append out "/share/genenetwork2/javascript/DataTables"))
+ (source (assoc-ref %build-inputs "source"))
+ (media (string-append source "/media")))
+ (copy-recursively media targetdir)))))
+ (native-inputs `(("source" ,source)))
+ (propagated-inputs `(("javascript-cytoscape" ,javascript-cytoscape)))
+ (home-page "https://www.datatables.net/")
+ (synopsis "Tables 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)))