[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#45000] [PATCH 6/9] gnu: Add ghc-hjsmin.
From: |
Jonathan Frederickson |
Subject: |
[bug#45000] [PATCH 6/9] gnu: Add ghc-hjsmin. |
Date: |
Tue, 1 Dec 2020 23:55:37 -0500 |
* gnu/packages/haskell-xyz.scm (ghc-hjsmin): New variable.
---
gnu/packages/haskell-xyz.scm | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm
index 19eabd949b..b24c8cf7b7 100644
--- a/gnu/packages/haskell-xyz.scm
+++ b/gnu/packages/haskell-xyz.scm
@@ -15469,3 +15469,36 @@ Zstandard compression algorithm, a fast lossless
compression algorithm
targeting real-time compression scenarios at zlib-level and better
compression ratios.")
(license license:bsd-3)))
+
+(define-public ghc-hjsmin
+ (package
+ (name "ghc-hjsmin")
+ (version "0.2.0.4")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://hackage.haskell.org/package/hjsmin/hjsmin-"
+ version
+ ".tar.gz"))
+ (sha256
+ (base32
+ "1r2p5rjdjr25j3w4s57q5hxw2c3ymw12x7ms18yvglnq2ivr9fc1"))))
+ (build-system haskell-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (delete 'check))))
+ (inputs
+ `(("ghc-language-javascript"
+ ,ghc-language-javascript)
+ ("ghc-optparse-applicative"
+ ,ghc-optparse-applicative)))
+ (native-inputs `(("ghc-extra" ,ghc-extra)))
+ (home-page "https://github.com/erikd/hjsmin")
+ (synopsis
+ "Haskell implementation of a javascript minifier")
+ (description
+ "Reduces size of javascript files by stripping out extraneous whitespace
+and other syntactic elements, without changing the semantics.")
+ (license license:bsd-3)))
--
2.29.2
- [bug#45000] [PATCH 0/9] Build git-annex with assistant webapp enabled, Jonathan Frederickson, 2020/12/01
- [bug#45000] [PATCH 1/9] gnu: Add ghc-yesod-test., Jonathan Frederickson, 2020/12/01
- [bug#45000] [PATCH 2/9] gnu: Add ghc-wai-app-static., Jonathan Frederickson, 2020/12/01
- [bug#45000] [PATCH 3/9] gnu: Add ghc-yesod-static., Jonathan Frederickson, 2020/12/01
- [bug#45000] [PATCH 5/9] gnu: ghc-yesod-core: Update to 1.6.18.6., Jonathan Frederickson, 2020/12/01
- [bug#45000] [PATCH 6/9] gnu: Add ghc-hjsmin.,
Jonathan Frederickson <=
- [bug#45000] [PATCH 7/9] gnu: Add ghc-template-haskell., Jonathan Frederickson, 2020/12/01
- [bug#45000] [PATCH 4/9] gnu: Add ghc-cryptonite-conduit., Jonathan Frederickson, 2020/12/01
- [bug#45000] [PATCH 9/9] gnu: git-annex: Build with git-annex assistant webapp enabled., Jonathan Frederickson, 2020/12/01
- [bug#45000] [PATCH 8/9] gnu: Add ghc-boot-th., Jonathan Frederickson, 2020/12/01
- [bug#45000] [PATCH 0/9] Build git-annex with assistant webapp enabled, zimoun, 2020/12/02