diff options
author | Danny Milosavljevic <dannym@friendly-machines.com> | 2025-02-06 09:41:18 +0100 |
---|---|---|
committer | Danny Milosavljevic <dannym@friendly-machines.com> | 2025-02-06 09:47:33 +0100 |
commit | 519607fae9a035b31ea4a7357f190887954ac0fa (patch) | |
tree | a3c1e48242112243572f673964580773d06d3fca | |
parent | 52c05f3b120e641c8bd2d68cfcf0d6af947de27b (diff) | |
download | guix-519607fae9a035b31ea4a7357f190887954ac0fa.tar.gz guix-519607fae9a035b31ea4a7357f190887954ac0fa.zip |
gnu: emacs-org-noter: Enable modules.
* gnu/packages/emacs-xyz.scm (emacs-org-noter)[arguments]<#:include>: Enable
modules.
Change-Id: I3e6565eca08189844a414b90c7947ab180ec736c
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index c0fd08ffca..10d619b76d 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -35881,7 +35881,18 @@ text-property translator.") (base32 "14n9bq0vxz6gnd5d8nzfc327647iww7gxly43rd4lw7fza8dk380")))) (build-system emacs-build-system) - (arguments (list #:exclude #~(list "emacs-devel.el"))) + (arguments + (list #:include + #~(list "org-noter-core.el" + "org-noter.el" + "org-noter-test-utils.el" + "modules/org-noter-pdf.el" + "modules/org-noter-djvu.el" + "modules/org-noter-nov.el" + "modules/org-noter-org-roam.el" + "modules/org-noter-pdf.el") + #:exclude + #~(list "emacs-devel.el"))) (native-inputs (list emacs-log4e emacs-with-simulated-input)) (propagated-inputs (list emacs-org)) (home-page "https://github.com/org-noter/org-noter") |