From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48883) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ddJ5X-0006SM-2U for guix-patches@gnu.org; Thu, 03 Aug 2017 12:35:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ddJ5T-0004y4-2G for guix-patches@gnu.org; Thu, 03 Aug 2017 12:35:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:37556) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ddJ5S-0004xx-UH for guix-patches@gnu.org; Thu, 03 Aug 2017 12:35:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ddJ5S-0003Vt-Mu for guix-patches@gnu.org; Thu, 03 Aug 2017 12:35:02 -0400 Subject: [bug#27935] [PATCH 1/8] gnu: Add js-html5shiv. References: <87h8xopq9w.fsf@elephly.net> In-Reply-To: <87h8xopq9w.fsf@elephly.net> Resent-Message-ID: From: Ricardo Wurmus Date: Thu, 3 Aug 2017 18:34:31 +0200 Message-Id: <20170803163438.5742-1-rekado@elephly.net> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 27935@debbugs.gnu.org Cc: Ricardo Wurmus * 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