From e7a41d43999283adf126fb72423b15bdfa082d91 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Sun, 8 Sep 2019 19:01:42 +0300 Subject: 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. --- gn/packages/javascript.scm | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) (limited to 'gn/packages/javascript.scm') 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")))))) -- cgit v1.2.3