aboutsummaryrefslogtreecommitdiff
path: root/doc/images/installer-resume.png
diff options
context:
space:
mode:
authorGrigory Shepelev <shegeley@gmail.com>2024-10-29 14:55:16 +0100
committerGuillaume Le Vaillant <glv@posteo.net>2024-10-29 14:56:46 +0100
commit958f9175bde167aa809791501812248d0cc87b92 (patch)
treeaacab77b99eaba3c0df5cb02e236f042506a4e26 /doc/images/installer-resume.png
parent714f60d2f7c20c66b9a90794bac3a16f86fd136c (diff)
downloadguix-958f9175bde167aa809791501812248d0cc87b92.tar.gz
guix-958f9175bde167aa809791501812248d0cc87b92.zip
gnu: Add cl-input-event-codes.
* gnu/packages/lisp-xyz.scm (cl-input-event-codes, ecl-cl-input-event-codes, sbcl-cl-input-event-codes): New variables. Change-Id: I47e65729f907e46d9deeb7dc0219ac9b1ba1a291 Co-authored-by: Sharlatan Hellseher <sharlatanus@gmail.com> Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
Diffstat (limited to 'doc/images/installer-resume.png')
0 files changed, 0 insertions, 0 deletions
an title='2018-06-01 15:20:54 +0200'>2018-06-01gexp: Add 'with-extensions'.Ludovic Courtès * guix/gexp.scm (<gexp>)[extensions]: New field. (gexp-attribute): New procedure. (gexp-modules): Write in terms of 'gexp-attribute'. (gexp-extensions): New procedure. (gexp->derivation): Add #:effective-version. [extension-flags]: New procedure. Honor extensions of EXP. (current-imported-extensions): New syntax parameter. (with-extensions): New macro. (gexp): Honor CURRENT-IMPORTED-EXTENSIONS. (compiled-modules): Add #:extensions and honor it. (load-path-expression): Likewise. (gexp->script, gexp->file): Honor extensions. * tests/gexp.scm (%extension-package): New variable. ("gexp-extensions & ungexp") ("gexp-extensions & ungexp-splicing") ("gexp-extensions and literal Scheme object") ("gexp->derivation & with-extensions") ("program-file & with-extensions"): New tests. * doc/guix.texi (G-Expressions): Document 'with-extensions'. 2018-04-11gexp: 'scheme-file' can splice expressions.Ludovic Courtès * guix/gexp.scm (<scheme-file>)[splice?]: New field. (scheme-file): Add #:splice? and pass it to '%scheme-file'. (scheme-file-compiler): Pass SPLICE? to 'gexp->file'. (gexp->file): Add #:splice? and honor it. * tests/gexp.scm ("gexp->file + #:splice?"): New test. ("gexp->derivation & with-imported-module & computed module"): Use #:splice? #t. 2018-03-23gexp: 'program-file' has a new #:module-path parameter.Ludovic Courtès * guix/gexp.scm (<program-file>): Add 'path' field. (program-file): Add #:module-path parameter and honor it. (program-file-compiler): Honor the 'path' field. * tests/gexp.scm ("program-file #:module-path"): New test. * doc/guix.texi (G-Expressions): Update. 2018-03-23gexp: 'gexp->script' and 'gexp->file' have a new #:module-path parameter.Ludovic Courtès * guix/gexp.scm (load-path-expression): Add 'path' optional parameter. (gexp->script): Add #:module-path and honor it. (gexp->file): Likewise. * tests/gexp.scm ("gexp->script #:module-path"): New test. * doc/guix.texi (G-Expressions): Update accordingly. 2017-07-17gexp: 'ungexp-splicing' properly accounts for nested native inputs.Ludovic Courtès Previously, (gexp-native-inputs #~#$@(list #~#+foo)) would return '(). This is a followup to 5b14a7902c58d9fb7923f9e16871f549fbe59b6e. * guix/gexp.scm (gexp-inputs)[add-reference-inputs]: In the list case, remove 'if' around 'fold-right'. In 'map' lambda, always inherit N?. * tests/gexp.scm ("gexp list splicing + ungexp-splicing"): New test. 2017-04-19gexp: 'gexp-modules' accepts plain Scheme objects.Ludovic Courtès * guix/gexp.scm (gexp-modules): Return '() when not (gexp? GEXP). * tests/gexp.scm ("gexp-modules and literal Scheme object"): New test. 2017-04-04gexp: 'lower-object' raises an exception when passed an invalid object.Ludovic Courtès * guix/gexp.scm (&gexp-error, &gexp-input-error): New error conditions. (lower-object): Raise &gexp-input-error when 'lookup-compiler' returns #f. * tests/gexp.scm ("lower-object & gexp-input-error?"): New test. * guix/ui.scm (call-with-error-handling): Add case for 'gexp-input-error?'. 2017-03-16gexp: Add '=>' syntax to import computed modules.Ludovic Courtès * guix/gexp.scm (imported-files)[file-pair]: Add case for pairs where the cdr is not a string. (imported-modules): Support '=>' syntax in MODULES. * tests/gexp.scm ("imported-files with file-like objects") ("gexp->derivation & with-imported-module & computed module"): New tests. * doc/guix.texi (G-Expressions): Document '=>' syntax for 'with-imported-modules'.