Reputation: 3638
As I'm developing my module (r7rs "library"), I want to be able to list my dependencies (everything that needs to be installed by chicken-install
) in some kind of file, and do something like chicken-install .
Like in python: pip install
or Clojure lein deps
. Is there anything like this in Chicken Scheme?
Upvotes: 0
Views: 69
Reputation: 3638
I got help in the #chicken IRC channel.
It seems that the answer is to
chicken-install
while in the directory of the definition. This will install all the listed dependencies along with your egg.https://wiki.call-cc.org/eggs%20tutorial
tool that helps creating the egg definition: http://wiki.call-cc.org/eggref/4/chicken-belt#chicken-hatch
Upvotes: 1