~ chicken-core (master) /setup.defaults
Trap1;;;; setup.defaults - defaults for chicken-install -*- Scheme -*-234;; version-number of the defaults file - checked by "chicken-install"5; when defaults are loaded67(version 2)8910;; list of locations (eggs stored in the local fileystem)11;12; (location DIRECTORY ...)13;14; Note that these override eggs from servers.151617;; list of servers in the order in which they will be processed18;19; (server URL ...)20;21; URL may be an alias (see below) or a real URL.2223; TEMPORARY DISABLED24;(server "kitten-technologies")25(server "call-cc")262728;; extensions-mappings29;30; (map (EXTENSIONNAME ... -> OTHEREXTENSIONNAME ...))3132(map (srfi-4 ->))33(map (r7rs ->))343536;; aliases for servers37;38; (alias (NAME REALNAME) ...)3940(alias41 ("call-cc" "http://code.call-cc.org/cgi-bin/henrietta.cgi")42 ("kitten-technologies" "http://chicken.kitten-technologies.co.uk/henrietta.cgi"))434445;; overrides46;47; (override (NAME VERSION) ...)48;49; or:50;51; (override FILENAME)525354;; hack55;56; (hack EXPR)57;58; EXPR should evaluate to a procedure of the type, where the59; procedure is of type EGGNAME DEPENDENCIES -> DEPENDENCIES' and60; may modify the dependencies-list of an arbitrary egg. All61; hack procedures are invoked in the order given here