mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-15 03:15:09 -05:00
gnu: Add cl-stripe.
* gnu/packages/lisp-xyz.scm (sbcl-stripe): New variable. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net> Change-Id: Ideeff671b8577bcfceb241a86624ac26f1d077f7
This commit is contained in:
parent
d34fe10018
commit
537768018e
1 changed files with 32 additions and 0 deletions
|
@ -6134,6 +6134,38 @@ (define-public cl-lisp-pay
|
|||
(define-public ecl-lisp-pay
|
||||
(sbcl-package->ecl-package sbcl-lisp-pay))
|
||||
|
||||
(define-public sbcl-stripe
|
||||
(let ((commit "b59631d21d63e101de6eb96b56941471504ba644")
|
||||
(revision "0"))
|
||||
(package
|
||||
(name "sbcl-stripe")
|
||||
(version (git-version "0.0.0" revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/atlas-engineer/stripe")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name "cl-stripe" version))
|
||||
(sha256
|
||||
(base32 "00sfq2f6dnpwa6pf7rgw5hazbwx4yf1g0jrkfz9h4kq5zyxwk1cy"))))
|
||||
(build-system asdf-build-system/sbcl)
|
||||
(inputs
|
||||
(list sbcl-dexador
|
||||
sbcl-golden-utils
|
||||
sbcl-local-time
|
||||
sbcl-yason))
|
||||
(home-page "https://github.com/atlas-engineer/stripe")
|
||||
(synopsis "Stripe payment API client for Common Lisp")
|
||||
(description "A client for the Stripe payment API.")
|
||||
(license license:expat))))
|
||||
|
||||
(define-public cl-stripe
|
||||
(sbcl-package->cl-source-package sbcl-stripe))
|
||||
|
||||
(define-public ecl-stripe
|
||||
(sbcl-package->ecl-package sbcl-stripe))
|
||||
|
||||
(define-public sbcl-drakma
|
||||
(package
|
||||
(name "sbcl-drakma")
|
||||
|
|
Loading…
Reference in a new issue