~ chicken-core (chicken-5) /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(server "kitten-technologies")24(server "call-cc")252627;; extensions-mappings28;29; (map (EXTENSIONNAME ... -> OTHEREXTENSIONNAME ...))3031(map (srfi-4 ->))323334;; aliases for servers35;36; (alias (NAME REALNAME) ...)3738(alias39 ("call-cc" "http://code.call-cc.org/cgi-bin/henrietta.cgi")40 ("kitten-technologies" "http://chicken.kitten-technologies.co.uk/henrietta.cgi"))414243;; overrides44;45; (override (NAME VERSION) ...)46;47; or:48;49; (override FILENAME)505152;; hack53;54; (hack EXPR)55;56; EXPR should evaluate to a procedure of the type, where the57; procedure is of type EGGNAME DEPENDENCIES -> DEPENDENCIES' and58; may modify the dependencies-list of an arbitrary egg. All59; hack procedures are invoked in the order given here