[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#27935] [PATCH 1/8] gnu: Add js-html5shiv.
From: |
Ricardo Wurmus |
Subject: |
[bug#27935] [PATCH 1/8] gnu: Add js-html5shiv. |
Date: |
Thu, 3 Aug 2017 18:34:31 +0200 |
* gnu/packages/javascript.scm (js-html5shiv): New variable.
---
gnu/packages/javascript.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/javascript.scm b/gnu/packages/javascript.scm
index 43bc0bbf6..836465191 100644
--- a/gnu/packages/javascript.scm
+++ b/gnu/packages/javascript.scm
@@ -134,3 +134,28 @@ be able to view it naturally and easily.")))
script to enable responsive web designs in browsers that don't support CSS3
Media Queries.")
(license license:expat)))
+
+(define-public js-html5shiv
+ (package
+ (name "js-html5shiv")
+ (version "3.7.3")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "https://github.com/aFarkas/html5shiv/"
+ "archive/" version ".tar.gz"))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "0inlbpxpqzdyi24lqagzf7l24zxg0y02xcpqs2h4npjscazzw7hg"))))
+ (build-system minify-build-system)
+ (home-page "https://github.com/aFarkas/html5shiv")
+ (synopsis "Enable HTML5 sectioning elements in legacy browsers")
+ (description "The HTML5 Shiv enables use of HTML5 sectioning elements in
+legacy Internet Explorer and provides basic HTML5 styling for Internet
+Explorer 6-9, Safari 4.x (and iPhone 3.x), and Firefox 3.x.")
+ ;; From the file "MIT and GPL2 licenses.md":
+ ;;
+ ;; This software is licensed under a dual license system (MIT or GPL
+ ;; version 2). This means you are free to choose with which of both
+ ;; licenses (MIT or GPL version 2) you want to use this library.
+ (license (list license:expat license:gpl2))))
--
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 <=
- [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, 2017/08/03
- [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