about summary refs log tree commit diff
path: root/gn/packages
diff options
context:
space:
mode:
authorEfraim Flashner2019-09-23 03:59:05 -0500
committerEfraim Flashner2019-09-23 03:59:05 -0500
commit7ade3b6fa77050916ca5e5bf5ba20fa5e13e363e (patch)
treeb4202e2c3c9cecc3aaa8c08b1b50f5e0750527ce /gn/packages
parent340a0c58497109205b39d7ec8e5f0802678d6ca7 (diff)
downloadguix-bioinformatics-7ade3b6fa77050916ca5e5bf5ba20fa5e13e363e.tar.gz
gn: Add javascript-jscolor, js-jscolor.
* gn/pakcages/javascript.scm (javascript-jscolor, js-jscolor): New
variables.
Diffstat (limited to 'gn/packages')
-rw-r--r--gn/packages/javascript.scm51
1 files changed, 51 insertions, 0 deletions
diff --git a/gn/packages/javascript.scm b/gn/packages/javascript.scm
index c79d307..8c88656 100644
--- a/gn/packages/javascript.scm
+++ b/gn/packages/javascript.scm
@@ -3,6 +3,7 @@
   #:use-module (gnu packages compression)
   #:use-module (gn packages web)
   #:use-module (guix packages)
+  #:use-module (guix utils)
   #:use-module (guix download)
   #:use-module (guix git-download)
   #:use-module (guix build-system minify)
@@ -748,3 +749,53 @@ maps or data visualization.")
     (arguments
      `(#:javascript-files '("chroma.js")))
     (build-system minify-build-system)))
+
+(define-public javascript-jscolor
+  (package
+    (name "javascript-jscolor")
+    (version "2.0.5") ; April 26, 2018
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "http://jscolor.com/release/"
+                           (version-major+minor version)
+                           "/jscolor-" version ".zip"))
+       (sha256
+        (base32
+         "1mjsr7vvark3glipvk5xxg3xsi88swwlkfmlkykwcwnrgw2hyq53"))))
+    (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/jscolor"))
+                (unzip (string-append (assoc-ref %build-inputs "unzip") "/bin/unzip"))
+                (source (assoc-ref %build-inputs "source")))
+           (invoke unzip source)
+           (install-file "jscolor.js" targetdir)
+           ))))
+    (native-inputs
+     `(("source" ,source)
+       ("unzip" ,unzip)))
+    (home-page "http://jscolor.com")
+    (synopsis "Javascript web color picker")
+    (description
+     "jscolor is a web color picker component that aims to be super easy both
+for developers to install and for the end users to use.")
+    (license license:gpl3)))
+
+(define-public js-jscolor
+  (package
+    (inherit javascript-jscolor)
+    (name "js-jscolor")
+    (arguments
+     `(#:javascript-files '("jscolor.js")
+       #:phases
+       (modify-phases %standard-phases
+         ;; unpacking the zipbomb breaks javascript-jscolor
+         (replace 'unpack
+           (lambda* (#:key source #:allow-other-keys)
+             (invoke "unzip" source))))))
+    (build-system minify-build-system)))