diff options
author | Efraim Flashner | 2019-09-08 19:01:42 +0300 |
---|---|---|
committer | Efraim Flashner | 2019-09-08 19:01:42 +0300 |
commit | e7a41d43999283adf126fb72423b15bdfa082d91 (patch) | |
tree | e364fdbf19e71c7318523fa995410269eb3d55ca /gn/packages/javascript.scm | |
parent | 23e966548a3a33c14d48a59afb3b81c6ea7d327f (diff) | |
download | guix-bioinformatics-e7a41d43999283adf126fb72423b15bdfa082d91.tar.gz |
gn: Add r-shiny-gn.
* gn/packages/statistics.scm (r-shiny-gn): New variable.
* gn/packages/javascript.scm (js-strftime-0.9, js-es5-shim-2): New
variables.
Diffstat (limited to 'gn/packages/javascript.scm')
-rw-r--r-- | gn/packages/javascript.scm | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/gn/packages/javascript.scm b/gn/packages/javascript.scm index 465259a..cf229a8 100644 --- a/gn/packages/javascript.scm +++ b/gn/packages/javascript.scm @@ -1,6 +1,7 @@ (define-module (gn packages javascript) #:use-module ((guix licenses) #:prefix license:) #:use-module (gnu packages compression) + #:use-module (gnu packages javascript) #:use-module (gn packages web) #:use-module (guix packages) #:use-module (guix download) @@ -539,3 +540,33 @@ not natively support it.") (description "FileSaver.js is the solution to saving files on the client-side, and is perfect for web apps that generates files on the client.") (license license:expat))) + +(define-public js-strftime-0.9 + (package + (inherit js-strftime) + (name "js-strftime") + (version "0.9.2") + (source (origin + (method git-fetch) + (uri (git-reference + (url"https://github.com/samsonjs/strftime") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0g72286afcd2sxdsbm5k868ms6yqhbz0p4yfg33lmzbk9q42v9bs")))))) + +(define-public js-es5-shim-2 + (package + (inherit js-es5-shim) + (name "js-es5-shim") + (version "2.0.12") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/es-shims/es5-shim") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1j4f0rba6p9bnqvw0riami01nkj0svl3flm7c7d6xydr2642zz8d")))))) |