[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#69591] [PATCH v4 08/32] gnu: Add miniz.
From: |
David Elsing |
Subject: |
[bug#69591] [PATCH v4 08/32] gnu: Add miniz. |
Date: |
Sat, 23 Mar 2024 22:04:47 +0000 |
* gnu/packages/compression.scm (miniz): New variable.
---
gnu/packages/compression.scm | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm
index 5de17b6b51..fcfc2c30f3 100644
--- a/gnu/packages/compression.scm
+++ b/gnu/packages/compression.scm
@@ -38,6 +38,7 @@
;;; Copyright © 2022 Greg Hogan <code@greghogan.com>
;;; Copyright © 2022 Zhu Zihao <all_but_last@163.com>
;;; Copyright © 2021 Foo Chuan Wei <chuanwei.foo@hotmail.com>
+;;; Copyright © 2024 David Elsing <david.elsing@posteo.net>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -2838,3 +2839,31 @@ (define-public unrar-free
libarchive. It does not rival the non-free @code{unrar} in terms of features,
but special care has been taken to ensure it meets most user's needs.")
(license license:gpl2+)))
+
+(define-public miniz
+ (package
+ (name "miniz")
+ (version "3.0.2")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/richgel999/miniz")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0672q35vjrpakmsr1gwj9k5fwv5ihzhahm19bq4y74wqpn91p7fw"))))
+ (build-system cmake-build-system)
+ (arguments
+ (list
+ #:configure-flags
+ ''("-DBUILD_SHARED_LIBS=ON")
+ ;; No tests
+ #:tests? #f))
+ (home-page "https://github.com/richgel999/miniz")
+ (synopsis "Independent implementation of zlib and Deflate compression")
+ (description "Miniz is a lossless data compression library that implements
+the zlib (RFC 1950) and Deflate (RFC 1951) compressed data format
+specification standards. It supports the most commonly used functions
+exported by the zlib library.")
+ (license license:expat)))
--
2.41.0
- [bug#69591] [PATCH v4 32/32] gnu: python-pytorch-for-r-torch: Adjust to new python-pytorch., (continued)
- [bug#69591] [PATCH v4 32/32] gnu: python-pytorch-for-r-torch: Adjust to new python-pytorch., David Elsing, 2024/03/23
- [bug#69591] [PATCH v4 11/32] gnu: Remove flatbuffers-next-shared., David Elsing, 2024/03/23
- [bug#69591] [PATCH v4 09/32] gnu: Add miniz-for-pytorch., David Elsing, 2024/03/23
- [bug#69591] [PATCH v4 03/32] gnu: Add python-optree., David Elsing, 2024/03/23
- [bug#69591] [PATCH v4 26/32] gnu: python-pytorch: Update to 2.2.1 and unbundle dependencies., David Elsing, 2024/03/23
- [bug#69591] [PATCH v4 14/32] gnu: cpuinfo: Update to commit aa4b216., David Elsing, 2024/03/23
- [bug#69591] [PATCH v4 01/32] gnu: asmjit: Update to commit 3ca5c18., David Elsing, 2024/03/23
- [bug#69591] [PATCH v4 06/32] gnu: Add python-expecttest., David Elsing, 2024/03/23
- [bug#69591] [PATCH v4 04/32] gnu: Add python-pytest-flakefinder., David Elsing, 2024/03/23
- [bug#69591] [PATCH v4 13/32] gnu: pthreadpool: Update to commit 178e3e0., David Elsing, 2024/03/23
- [bug#69591] [PATCH v4 08/32] gnu: Add miniz.,
David Elsing <=
- [bug#69591] [PATCH v4 17/32] gnu: oneapi-dnnl: Update to 3.3.5., David Elsing, 2024/03/23
- [bug#69591] [PATCH v4 05/32] gnu: Add python-pytest-shard., David Elsing, 2024/03/23
- [bug#69591] [PATCH v4 18/32] gnu: Add tensorpipe., David Elsing, 2024/03/23