diff options
author | Ashvith Shetty <ashvithshetty0010@zohomail.in> | 2025-03-24 18:40:43 +0530 |
---|---|---|
committer | Hilton Chain <hako@ultrarare.space> | 2025-03-25 15:38:48 +0800 |
commit | 3be752259d490cfce1108735a961705734b5799d (patch) | |
tree | b816907d6123879b1ba4f5733afa282426784515 | |
parent | ce086e31f0f5c78be76fd228dfd7718ff6df584e (diff) |
gnu: Add zig-clap.
* gnu/packages/zig-xyz.scm (zig-clap): New variable.
Change-Id: Iae01f44bd9ddb312b51cf899c24f6b56a808d026
Signed-off-by: Hilton Chain <hako@ultrarare.space>
Modified-by: Hilton Chain <hako@ultrarare.space>
-rw-r--r-- | gnu/packages/zig-xyz.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/zig-xyz.scm b/gnu/packages/zig-xyz.scm index a76dbb0473..3cc2b93767 100644 --- a/gnu/packages/zig-xyz.scm +++ b/gnu/packages/zig-xyz.scm @@ -3,6 +3,7 @@ ;;; Copyright © 2023 Ekaitz Zarraga <ekaitz@elenq.tech> ;;; Copyright © 2023 Felix Lechner <felix.lechner@lease-up.com> ;;; Copyright © 2024 Justin Veilleux <terramorpha@cock.li> +;;; Copyright © 2025 Ashvith Shetty <ashvithshetty0010@zohomail.in> ;;; ;;; This file is part of GNU Guix. ;;; @@ -141,6 +142,27 @@ mission-critical safety and performance for financial services.") @code{ext-session-lock-v1} protocol.") (license license:expat))) +(define-public zig-clap + (package + (name "zig-clap") + (version "0.9.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Hejsil/zig-clap") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1xjskvyib3kai3nmp574zfm07yvjsbzsxfysj96ss9339nq07ix6")))) + (build-system zig-build-system) + (home-page "https://github.com/Hejsil/zig-clap") + (synopsis "Command line argument parsing library") + (description + "@code{clap} is a simple and easy to use command line argument parser +library for Zig.") + (license license:expat))) + (define-public zig-diffz (let ((commit "420fcb22306ffd4c9c3c761863dfbb6bdbb18a73") (revision "0")) |