;; This is an operating system configuration template for a "Docker image" ;; setup, so it has barely any services at all. (use-modules (gnu)) (operating-system (host-name "komputilo") (timezone "Europe/Berlin") (locale "en_US.utf8") ;; This is where user accounts are specified. The "root" account is ;; implicit, and is initially created with the empty password. (users (cons (user-account (name "alice") (comment "Bob's sister") (group "users") (supplementary-groups '("wheel" "audio" "video"))) %base-user-accounts)) ;; Globally-installed packages. (packages %base-packages) ;; Because the system will run in a Docker container, we may omit many ;; things that would normally be required in an operating system ;; configuration file. These things include: ;; ;; * bootloader ;; * file-systems ;; * services such as mingetty, udevd, slim, networking, dhcp ;; ;; Either these things are simply not required, or Docker provides ;; similar services for us. ;; This will be ignored. (bootloader (bootloader-configuration (bootloader grub-bootloader) (target "does-not-matter"))) ;; This will be ignored, too. (file-systems (list (file-system (device "does-not-matter") (mount-point "/") (type "does-not-matter")))) ;; Guix is all you need! (services (list (service guix-service-type)))) rm class='right' method='get' action='/guix/log/gnu/packages/scheme.scm'>
path: root/gnu/packages/scheme.scm
AgeCommit message (Expand)Author
2023-09-14gnu: Add stklos....* gnu/packages/scheme.scm (stklos): New variable. Co-authored-by: Ludovic Courtès <ludo@gnu.org> Ramin Honary
2023-09-06gnu: gambit-c: Update to 4.9.5....* gnu/packages/scheme.scm (gambit-c): Update to 4.9.5. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Rémi Teissier
2023-08-16Update email addresses for Juliana Sims....* .mailmap: Add an entry for Juliana. * gnu/packages/admin.scm, gnu/packages/audio.scm, gnu/packages/build-tools.scm, gnu/packages/scheme.scm: Update Juliana's email. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Juliana Sims
2023-07-18gnu: texlive-tex-texinfo -> texlive-texinfo....* gnu/packages/tex.scm (texlive-texinfo): New variable. (texlive-tex-texinfo): Deprecate variable. * doc/build.scm (pdf-manual): * gnu/packages/finance.scm (optionmatrix): * gnu/packages/lisp.scm (sbcl): * gnu/packages/plotutils.scm (asymptote): * gnu/packages/scheme.scm (mit-scheme): * gnu/packages/xdisorg.scm (xforms): Use new name. Nicolas Goaziou
2023-07-11gnu: mit-scheme: Fix building...* gnu/packages/scheme.scm (mit-scheme)[arguments] Add 'set-env before 'configure, setting -Wno-array-parameter in CFLAGS and CPPFLAGS to ignore warning causing build break. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Zac Berkowitz
2023-05-18gnu: sicp: Build as a single info file....Fixes <https://issues.guix.gnu.org/63565>. * gnu/packages/scheme.scm (sicp) [arguments]: Use '--no-split' makeinfo option in build phase. Reported-by: Andrey Mitrofanov <abme@rambler.ru> Maxim Cournoyer