mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
gnu: Add minizip-ng.
* gnu/packages/compression.scm (minizip-ng): New variable. Change-Id: I429dc542c1610383962c9971c2bef5a94c1f8bc6
This commit is contained in:
parent
9909866a68
commit
1ad77a745f
1 changed files with 27 additions and 0 deletions
|
@ -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 Vinicius Monego <monego@posteo.net>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -769,6 +770,32 @@ (define-public sfarklib
|
|||
with the sfArk algorithm.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public minizip-ng
|
||||
(package
|
||||
(name "minizip-ng")
|
||||
(version "4.0.5")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/zlib-ng/minizip-ng")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0lgx4s4aykxn8x3b4m4c4isasd2608bbyfm4lxc2spcc4xqwhzkz"))))
|
||||
(build-system cmake-build-system)
|
||||
(arguments
|
||||
(list #:configure-flags #~(list "-DBUILD_SHARED_LIBS=ON"
|
||||
"-DMZ_BUILD_TESTS=ON"
|
||||
"-DMZ_BUILD_UNIT_TESTS=ON")))
|
||||
(native-inputs (list googletest pkg-config))
|
||||
(inputs (list openssl zlib `(,zstd "lib")))
|
||||
(home-page "https://github.com/zlib-ng/minizip-ng")
|
||||
(synopsis "Zip manipulation library")
|
||||
(description "@code{minizip-ng} is a zip manipulation library written in
|
||||
C, forked from the zip manipulation library found in the zlib distribution.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public sfarkxtc
|
||||
(let ((commit "13cd6f93725a90d91ec5ea75babf1dbd694ac463")
|
||||
(revision "1"))
|
||||
|
|
Loading…
Reference in a new issue