diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2024-06-29 10:39:37 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2024-06-29 10:43:35 +0200 |
commit | 704bed1626acd2723d6e1484885ee83902c7e6b0 (patch) | |
tree | ab6498a837dde18b3bb38bb7c5c2968c7e446f09 | |
parent | 0ae9a2b0f5ddd4f0f96cacf168a5028812cef9e2 (diff) | |
download | guix-704bed1626acd2723d6e1484885ee83902c7e6b0.tar.gz guix-704bed1626acd2723d6e1484885ee83902c7e6b0.zip |
gnu: Add emacs-casual-lib.
* gnu/packages/emacs-xyz.scm (emacs-casual-lib): New variable.
Change-Id: I7b5baa39985c55ef51281baeb2df65a8c11879b4
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 2b7e328c9d..6501097097 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -33026,6 +33026,37 @@ all of your projects, then override or add variables on a per-project basis.") "Casual Dired is an opinionated Transient-based porcelain for Emacs Dired.") (license license:gpl3+))) +(define-public emacs-casual-lib + (package + (name "emacs-casual-lib") + (version "1.1.0") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kickingvegas/casual-lib") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0dn6jz8bbz17326g0jd1hvz80xxmbl7dwifb2nnw7nl6q6adbkmf")))) + (build-system emacs-build-system) + (arguments + (list #:tests? #t + #:test-command #~(list "make" "tests") + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'move-source-files + (lambda _ + (let ((el-files (find-files "./lisp" ".*\\.el$"))) + (for-each (lambda (f) (copy-file f (basename f))) + el-files))))))) + (native-inputs (list python-minimal)) + (home-page "https://github.com/kickingvegas/casual-lib") + (synopsis "Library package for the Emacs Casual porcelains") + (description + "Casual Lib is a library package used to support the Casual porcelains.") + (license license:gpl3+))) + (define-public emacs-calibredb (package (name "emacs-calibredb") |