gnu: cl-unix-opts: Update to 0.1.7-1.0e61f34.
* gnu/packages/lisp-xyz.scm (sbcl-unix-opts): Update to 0.1.7-1.0e61f34. [source]: Fetch using commit instead of old tag. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>master
parent
0da9ae01a8
commit
8e7e839c98
|
@ -3056,31 +3056,32 @@ settings ensure a very simple mode of operation, similar to that provided by
|
||||||
(sbcl-package->ecl-package sbcl-cl-json))
|
(sbcl-package->ecl-package sbcl-cl-json))
|
||||||
|
|
||||||
(define-public sbcl-unix-opts
|
(define-public sbcl-unix-opts
|
||||||
(package
|
(let ((commit "0e61f34b2ecf62288437810d4abb31e572048b04")
|
||||||
(name "sbcl-unix-opts")
|
(revision "1"))
|
||||||
(version "0.1.7")
|
(package
|
||||||
(source
|
(name "sbcl-unix-opts")
|
||||||
(origin
|
(version (git-version "0.1.7" revision commit))
|
||||||
(method git-fetch)
|
(source
|
||||||
(uri (git-reference
|
(origin
|
||||||
(url "https://github.com/libre-man/unix-opts")
|
(method git-fetch)
|
||||||
(commit version)))
|
(uri (git-reference
|
||||||
(file-name (git-file-name "unix-opts" version))
|
(url "https://github.com/libre-man/unix-opts")
|
||||||
(sha256
|
(commit commit)))
|
||||||
(base32
|
(file-name (git-file-name "unix-opts" version))
|
||||||
"08djdi1ard09fijb7w9bdmhmwd98b1hzmcnjw9fqjiqa0g3b44rr"))))
|
(sha256
|
||||||
(build-system asdf-build-system/sbcl)
|
(base32 "16mcqpzwrz808p9n3wwl99ckg3hg7yihw08y1i4l7c92aldbkasq"))))
|
||||||
(home-page "https://github.com/hankhero/cl-json")
|
(build-system asdf-build-system/sbcl)
|
||||||
(synopsis "Unix-style command line options parser")
|
(home-page "https://github.com/hankhero/cl-json")
|
||||||
(description
|
(synopsis "Unix-style command line options parser")
|
||||||
"This is a minimalistic parser of command line options. The main
|
(description
|
||||||
|
"This is a minimalistic parser of command line options. The main
|
||||||
advantage of the library is the ability to concisely define command line
|
advantage of the library is the ability to concisely define command line
|
||||||
options once and then use this definition for parsing and extraction of
|
options once and then use this definition for parsing and extraction of
|
||||||
command line arguments, as well as printing description of command line
|
command line arguments, as well as printing description of command line
|
||||||
options (you get --help for free). This way you don't need to repeat
|
options (you get --help for free). This way you don't need to repeat
|
||||||
yourself. Also, @command{unix-opts} doesn't depend on anything and
|
yourself. Also, @command{unix-opts} doesn't depend on anything and
|
||||||
precisely controls the behavior of the parser via Common Lisp restarts.")
|
precisely controls the behavior of the parser via Common Lisp restarts.")
|
||||||
(license license:expat)))
|
(license license:expat))))
|
||||||
|
|
||||||
(define-public cl-unix-opts
|
(define-public cl-unix-opts
|
||||||
(sbcl-package->cl-source-package sbcl-unix-opts))
|
(sbcl-package->cl-source-package sbcl-unix-opts))
|
||||||
|
|
Reference in New Issue