mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 13:58:15 -05:00
gnu: zix: Update to 0.4.2.
* gnu/packages/datastructures.scm (zix): Update to 0.4.2. Change-Id: I4465ff6eefbdbb7a3de1806fc4adbec285fa26a1 Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
This commit is contained in:
parent
909d55e077
commit
3350f3be0d
1 changed files with 22 additions and 23 deletions
|
@ -6,6 +6,7 @@
|
||||||
;;; Copyright © 2020 Mark H Weaver <mhw@netris.org>
|
;;; Copyright © 2020 Mark H Weaver <mhw@netris.org>
|
||||||
;;; Copyright © 2020, 2022 Marius Bakke <marius@gnu.org>
|
;;; Copyright © 2020, 2022 Marius Bakke <marius@gnu.org>
|
||||||
;;; Copyright © 2023 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
;;; Copyright © 2023 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
||||||
|
;;; Copyright © 2023 Zheng Junjie <873216071@qq.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -444,28 +445,26 @@ (define-public robin-map
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public zix
|
(define-public zix
|
||||||
(let ((commit "a13ae5ad9dc70075740f11139f1db96cc79faa59")
|
(package
|
||||||
(revision "0"))
|
(name "zix")
|
||||||
(package
|
(version "0.4.2")
|
||||||
(name "zix")
|
(source (origin
|
||||||
(version (git-version "0.3.3" revision commit))
|
(method git-fetch)
|
||||||
(source (origin
|
(uri (git-reference
|
||||||
(method git-fetch)
|
(url "https://gitlab.com/drobilla/zix.git")
|
||||||
(uri (git-reference
|
(commit (string-append "v" version))))
|
||||||
(url "https://gitlab.com/drobilla/zix.git")
|
(file-name (git-file-name name version))
|
||||||
(commit commit)))
|
(sha256
|
||||||
(file-name (git-file-name name version))
|
(base32
|
||||||
(sha256
|
"07pbq4bi64iv39swldfbcp7131b5n4hs64pgd417gqlwv8qvgjcw"))))
|
||||||
(base32
|
(build-system meson-build-system)
|
||||||
"1njyb8lz1d5qzf0k14pb3rq13xkxnddwbz090dj69138ymz1xgyl"))))
|
(arguments
|
||||||
(build-system meson-build-system)
|
(list #:configure-flags #~(list "-Ddocs=disabled"))) ;needs "sphinxygen"
|
||||||
(arguments
|
(native-inputs (list pkg-config))
|
||||||
(list #:configure-flags #~(list "-Ddocs=disabled"))) ;needs "sphinxygen"
|
(home-page "https://gitlab.com/drobilla/zix")
|
||||||
(native-inputs (list pkg-config))
|
(synopsis "C library of portability wrappers and data structures")
|
||||||
(home-page "https://gitlab.com/drobilla/zix")
|
(description
|
||||||
(synopsis "C library of portability wrappers and data structures")
|
"Zix is a C library of portability wrappers and data structures. It
|
||||||
(description
|
|
||||||
"Zix is a C library of portability wrappers and data structures. It
|
|
||||||
provides the following components:
|
provides the following components:
|
||||||
@table @code
|
@table @code
|
||||||
@item ZixAllocator A customizable allocator.
|
@item ZixAllocator A customizable allocator.
|
||||||
|
@ -480,4 +479,4 @@ (define-public zix
|
||||||
zix/filesystem.h Functions for working with filesystems.
|
zix/filesystem.h Functions for working with filesystems.
|
||||||
@item zix/path.h Functions for working with filesystem paths lexically.
|
@item zix/path.h Functions for working with filesystem paths lexically.
|
||||||
@end table")
|
@end table")
|
||||||
(license license:isc))))
|
(license license:isc)))
|
||||||
|
|
Loading…
Reference in a new issue