diff options
author | jgart <jgart@dismail.de> | 2022-11-03 12:08:06 -0500 |
---|---|---|
committer | Guillaume Le Vaillant <glv@posteo.net> | 2022-11-05 13:02:36 +0100 |
commit | 6052fdf35079a5d7f1cf5773f62ad96160a4385c (patch) | |
tree | 5911b5c2399ca808248ac7b2e4914224982525f9 | |
parent | 5e683bc5fa466d3117620e242ff7006538102c09 (diff) | |
download | guix-6052fdf35079a5d7f1cf5773f62ad96160a4385c.tar.gz |
gnu: Add cl-inotify.
* gnu/packages/lisp-xyz.scm (cl-inotify, ecl-inotify, sbcl-inotify): New variables. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
-rw-r--r-- | gnu/packages/lisp-xyz.scm | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index 57a8fdb27c..fc48f649d6 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -453,6 +453,42 @@ It's intended as a simpler alternative to parser generators.") (define-public ecl-meta (sbcl-package->ecl-package sbcl-meta)) +(define-public sbcl-cl-inotify + (let ((commit "66f29e01ec28355ebba8292411b4de90eebd76a3") + (revision "0")) + (package + (name "sbcl-cl-inotify") + (version (git-version "0.0.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Ferada/cl-inotify") + (commit commit))) + (file-name (git-file-name "cl-inotify" version)) + (sha256 + (base32 "0d3bvp5lqnddzhk1w9yyli03njbkhc8d129a058g0j49kgd47c7v")))) + (build-system asdf-build-system/sbcl) + (native-inputs (list sbcl-fiveam)) + (inputs + (list libfixposix + sbcl-binary-types + sbcl-cffi + sbcl-osicat + sbcl-trivial-utf-8)) + (synopsis "Common Lisp interface to the Linux inotify API") + (description + "@code{cl-inotify} uses @code{cl-cffi} to provide a Common Lisp +interface to the Linux inotify API.") + (home-page "https://github.com/Ferada/cl-inotify/") + (license license:bsd-2)))) + +(define-public cl-inotify + (sbcl-package->cl-source-package sbcl-cl-inotify)) + +(define-public ecl-cl-inotify + (sbcl-package->ecl-package sbcl-cl-inotify)) + (define-public sbcl-bodge-queue (let ((commit "948c9a501dcd412689952d09eb7453ec2722336a") (revision "0")) |