gnu: Add argparse.

* gnu/packages/c.scm (argparse): New variable.

Change-Id: I846cf9229c44f6e40b07dc9f82cd0327ebd02fcb
This commit is contained in:
宋文武 2025-03-08 18:55:29 +08:00
parent 704f9c4f53
commit 58f9ac3b6d
No known key found for this signature in database
GPG key ID: D415BF253B515976

View file

@ -1020,6 +1020,39 @@ consist of a set of LALR(1) parsing tables and a driver routine written in the
C programming language.")
(license license:public-domain)))
(define-public argparse
(package
(name "argparse")
(version "1.1.0")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/cofyc/argparse")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"0zb0b2aikk4dasjzsyiyf2xn1hbld8gf8np3843zcg9wbxydd8zd"))))
(build-system gnu-build-system)
(arguments
(list #:test-target "test"
#:phases
#~(modify-phases %standard-phases
(delete 'configure) ;no configure script
(replace 'install
(lambda* (#:key outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out"))
(inc (string-append out "/include"))
(lib (string-append out "/lib")))
(install-file "argparse.h" inc)
(install-file "libargparse.so" lib)))))))
(synopsis "Command line arguments parsing library")
(home-page "https://github.com/cofyc/argparse")
(description
"This C library provides high-level arguments parsing solutions inspired
by Python's @code{argparse} module.")
(license license:expat)))
(define-public aws-c-common
(package
(name "aws-c-common")