/usr/share/chicken/setup.defaults is in libchicken6 4.8.0.5-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 | ;;;; setup.defaults - defaults for chicken-install -*- Scheme -*-
;; version-number of the defaults file - checked by "chicken-install"
; when defaults are loaded
(version 1)
;; list of servers in the order in which they will be processed
;
; (server (location URL) (transport TRANSPORT))
;
; URL may be an alias (see below) or a real URL
(server
(location "kitten-technologies")
(transport http))
(server
(location "call-cc")
(transport http))
;; extensions-mappings
;
; (map (EXTENSIONNAME ... -> OTHEREXTENSIONNAME ...))
(map
(data-structures
extras files foreign irregex lolevel ports tcp utils
posix irregex setup-api setup-download
srfi-1 srfi-4 srfi-13 srfi-14 srfi-18 srfi-69
->) )
;; aliases for locations
;
; (alias (NAME REALNAME) ...)
(alias
("call-cc" "http://code.call-cc.org/cgi-bin/henrietta.cgi")
("kitten-technologies" "http://chicken.kitten-technologies.co.uk/henrietta.cgi"))
;; overrides
;
; (override (NAME VERSION) ...)
;
; or:
;
; (override FILENAME)
;; hack
;
; (hack EXPR)
;
; EXPR should evaluate to a procedure of the type, where the
; procedure is of type EGGNAME DEPENDENCIES -> DEPENDENCIES' and
; may modify the dependencies-list of an arbitrary egg. All
; hack procedures are invoked in the order given here
|