mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add argparse.
* gnu/packages/c.scm (argparse): New variable. Change-Id: I846cf9229c44f6e40b07dc9f82cd0327ebd02fcb
This commit is contained in:
parent
704f9c4f53
commit
58f9ac3b6d
1 changed files with 33 additions and 0 deletions
|
@ -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")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue