Tom Willemse
e8ac8c4687
I'm working on moving my build setup to my own laminar[1] instance. To do this I need to be able to package files up. It appears that I couldn't quite get Cask to work, and Eldev exists in the Guix[2] package repository. [1]: https://laminar.ryuslash.org/ [2]: https://guix.gnu.org/
20 lines
681 B
Text
20 lines
681 B
Text
; -*- mode: emacs-lisp; lexical-binding: t -*-
|
|
|
|
;; Uncomment some calls below as needed for your project.
|
|
(eldev-use-package-archive 'gnu-elpa)
|
|
;(eldev-use-package-archive 'nongnu-elpa)
|
|
(eldev-use-package-archive 'melpa)
|
|
(eldev-use-package-archive `("oni" . ,(expand-file-name "../bin")))
|
|
|
|
(eldev-use-local-dependency
|
|
(car (directory-files (format "%s/share/emacs/site-lisp" (getenv "GUIX_ENVIRONMENT"))
|
|
t "org-pretty-table" nil 1)))
|
|
|
|
(eldev-use-plugin 'autoloads)
|
|
|
|
(setf eldev-files-to-package
|
|
`(:or ,eldev-files-to-package
|
|
'("*.el"
|
|
"./snippets/**/*"
|
|
"./icons/**/*"
|
|
"./capture-templates/**/*")))
|