mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-14 10:55:23 -05:00
gnu: Add external-program.
* gnu/packages/lisp-xyz.scm (sbcl-external-program, cl-external-program, ecl-external-program): New variables. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
parent
f4448e43b4
commit
6f0c2c95d4
1 changed files with 36 additions and 0 deletions
|
@ -7824,3 +7824,39 @@ (define-public cl-csv
|
|||
|
||||
(define-public ecl-cl-csv
|
||||
(sbcl-package->ecl-package sbcl-cl-csv))
|
||||
|
||||
(define-public sbcl-external-program
|
||||
(let ((commit "5888b8f1fd3953feeeacecbba4384ddda584a749")
|
||||
(revision "1"))
|
||||
(package
|
||||
(name "sbcl-external-program")
|
||||
(version (git-version "0.0.6" revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/sellout/external-program.git")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0vww1x3yilb3bjwg6k184vaj4vxyxw4vralhnlm6lk4xac67kc9z"))))
|
||||
(build-system asdf-build-system/sbcl)
|
||||
(inputs
|
||||
`(("trivial-features" ,sbcl-trivial-features)))
|
||||
(native-inputs
|
||||
`(("fiveam" ,sbcl-fiveam)))
|
||||
(synopsis "Common Lisp library for running external programs")
|
||||
(description
|
||||
"EXTERNAL-PROGRAM enables running programs outside the Lisp
|
||||
process. It is an attempt to make the RUN-PROGRAM functionality in
|
||||
implementations like SBCL and CCL as portable as possible without
|
||||
sacrificing much in the way of power.")
|
||||
(home-page "https://github.com/sellout/external-program")
|
||||
(license license:llgpl))))
|
||||
|
||||
(define-public cl-external-program
|
||||
(sbcl-package->cl-source-package sbcl-external-program))
|
||||
|
||||
(define-public ecl-external-program
|
||||
(sbcl-package->ecl-package sbcl-external-program))
|
||||
|
|
Loading…
Reference in a new issue