The situation is:
I install pdf-tools
manually and load it with the following snippet:
(use-package pdf-tools
:pin manual
:load-path "my/load/path/to/the/git/repo/lisp"
:config
....stuff...)
Everything works fine, and I am happy with this setup. But....
The problem is:
I cannot install any package which depends on pdf-tools
, since the package manager does not recognize it as being installed. Thus, M-x package-list-packages
lists me quite a bunch of packages which are "incompatible" because they depend on pdf-tools
. But it is there!
How can I convince the package manager to install these packages?
EDIT:
I've tried the answer given to this very similar question and added pdf-tools
to package--builtin-versions
. Still not available for the package manager, the other package depending on it is still blocked.