[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#27935] [PATCH 3/8] gnu: Add js-strftime.
From: |
Ricardo Wurmus |
Subject: |
[bug#27935] [PATCH 3/8] gnu: Add js-strftime. |
Date: |
Thu, 3 Aug 2017 18:34:33 +0200 |
* gnu/packages/javascript.scm (js-strftime): New variable.
---
gnu/packages/javascript.scm | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/gnu/packages/javascript.scm b/gnu/packages/javascript.scm
index a806cb074..fdf522474 100644
--- a/gnu/packages/javascript.scm
+++ b/gnu/packages/javascript.scm
@@ -206,3 +206,26 @@ function that uses recursive descent instead of
@code{eval}.
and DAGs in JSON, and to then recover them. This is a capability that is not
provided by ES5. @code{JSONPath} is used to represent the links.")
(license license:public-domain))))
+
+(define-public js-strftime
+ (package
+ (name "js-strftime")
+ (version "0.10.0")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "https://github.com/samsonjs/strftime/"
+ "archive/v" version ".tar.gz"))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "1iya43w7y26y2dp9l4d40bhjc4scb5a9mng5ng5c8hsqr82f1375"))))
+ (build-system minify-build-system)
+ (arguments
+ `(#:javascript-files '("strftime.js")))
+ (home-page "https://github.com/samsonjs/strftime")
+ (synopsis "Implementation of strftime to JavaScript")
+ (description "This is an implementation of the @code{strftime} procedure
+for JavaScript. It works in (at least) node.js and browsers. It supports
+localization and timezones. Most standard specifiers from C are supported as
+well as some other extensions from Ruby.")
+ (license license:expat)))
--
2.13.3
- [bug#27935] gnu: Add r-shiny., Ricardo Wurmus, 2017/08/03
- [bug#27935] [PATCH 1/8] gnu: Add js-html5shiv., Ricardo Wurmus, 2017/08/03
- [bug#27935] [PATCH 5/8] gnu: Add js-datatables., Ricardo Wurmus, 2017/08/03
- [bug#27935] [PATCH 7/8] gnu: Add js-es5-shim., Ricardo Wurmus, 2017/08/03
- [bug#27935] [PATCH 3/8] gnu: Add js-strftime.,
Ricardo Wurmus <=
- [bug#27935] [PATCH 6/8] gnu: Add js-selectize., Ricardo Wurmus, 2017/08/03
- [bug#27935] [PATCH 2/8] gnu: Add js-json2., Ricardo Wurmus, 2017/08/03
- [bug#27935] [PATCH 4/8] gnu: Add js-highlight., Ricardo Wurmus, 2017/08/03
- [bug#27935] [PATCH 8/8] gnu: Add r-shiny., Ricardo Wurmus, 2017/08/03
- bug#27935: gnu: Add r-shiny., Ricardo Wurmus, 2017/08/04