[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#50835] [PATCH 1/8] gnu: Add ghc-cache.
From: |
Stephen Paul Weber |
Subject: |
[bug#50835] [PATCH 1/8] gnu: Add ghc-cache. |
Date: |
Sun, 26 Sep 2021 21:10:26 -0500 |
* gnu/packages/haskell-xyz.scm (ghc-cache): New variable.
---
gnu/packages/haskell-xyz.scm | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm
index f421458e15..f5ae156d35 100644
--- a/gnu/packages/haskell-xyz.scm
+++ b/gnu/packages/haskell-xyz.scm
@@ -15712,3 +15712,32 @@ 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-cache
+ (package
+ (name "ghc-cache")
+ (version "0.1.3.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://hackage.haskell.org/package/cache/cache-"
+ version
+ ".tar.gz"))
+ (sha256
+ (base32 "0d75257kvjpnv95ja50x5cs77pj8ccfr0nh9q5gzvcps83qdksa2"))))
+ (build-system haskell-build-system)
+ (inputs
+ `(("ghc-clock" ,ghc-clock)
+ ("ghc-hashable" ,ghc-hashable)
+ ("ghc-unordered-containers" ,ghc-unordered-containers)))
+ (native-inputs
+ `(("ghc-hspec" ,ghc-hspec)
+ ("hspec-discover" ,hspec-discover)))
+ (home-page "https://github.com/hverr/haskell-cache#readme")
+ (synopsis "In-memory key/value store with expiration support")
+ (description
+ "An in-memory key/value store with expiration support, similar to
+patrickmn/go-cache for Go. The cache is a shared mutable HashMap implemented
+using STM and with support for expiration times.")
+ (license license:bsd-3)))
--
2.20.1
- [bug#50835] [PATCH 0/8] New Haskell packages: cache, redis client, xmpp, Stephen Paul Weber, 2021/09/26
- [bug#50835] [PATCH 1/8] gnu: Add ghc-cache.,
Stephen Paul Weber <=
- [bug#50835] [PATCH 2/8] gnu: Add ghc-scanner., Stephen Paul Weber, 2021/09/26
- [bug#50835] [PATCH 3/8] gnu: Add ghc-hedis., Stephen Paul Weber, 2021/09/26
- [bug#50835] [PATCH 6/8] gnu: Add ghc-gnutls., Stephen Paul Weber, 2021/09/26
- [bug#50835] [PATCH 4/8] gnu: Add ghc-libxml-sax., Stephen Paul Weber, 2021/09/26
- [bug#50835] [PATCH 5/8] gnu: Add ghc-gsasl., Stephen Paul Weber, 2021/09/26
- [bug#50835] [PATCH 7/8] gnu: Add ghc-gnuidn., Stephen Paul Weber, 2021/09/26
- [bug#50835] [PATCH 8/8] gnu: Add ghc-network-protocol-xmpp., Stephen Paul Weber, 2021/09/26