aboutsummaryrefslogtreecommitdiff
path: root/gnu/installer
diff options
context:
space:
mode:
authorZheng Junjie <zhengjunjie@iscas.ac.cn>2024-07-06 17:46:10 +0800
committerZheng Junjie <zhengjunjie@iscas.ac.cn>2024-07-18 10:45:14 +0800
commit4f5811751323a8e2484ff34974b0dfdd2b4331b1 (patch)
tree6a529fbf713b60fab226ccd140ffd4783de1a9e1 /gnu/installer
parente7a6a6f1fb47d1b165e880feb21fa3e90ab7f176 (diff)
downloadguix-4f5811751323a8e2484ff34974b0dfdd2b4331b1.tar.gz
guix-4f5811751323a8e2484ff34974b0dfdd2b4331b1.zip
gnu: konquest: Update to 24.05.2.
* gnu/packages/kde-games.scm (konquest): Update to 24.05.2. [inputs]: Remove qtbase-5, qtdeclarative-5, and qtsvg-5; add qtscxml, qtdeclarative, and qtsvg. [arguments]: Set #:qtbase to qtbase. Change-Id: Id6aca4d44d3632c3c2c69269029f8a16f8301d36
Diffstat (limited to 'gnu/installer')
0 files changed, 0 insertions, 0 deletions
S environment variable and test its value. Reported-by: elevnkb 2023-01-09home: environment-variables: Return support for file-likes and gexps.Andrew Tropin * gnu/home/services.scm (environment-variable-shell-definitions): Add support for file-likes and gexps. * tests/guix-home.sh: Add SHELL environment variable and test its value. Add BUILDHOSTTIME environment variable. 2023-01-05home: services: environment-variables: Add support for literal strings.Ludovic Courtès * gnu/home/services.scm (<literal-string>): New record type. (environment-variable-shell-definitions): Split 'shell-quote' into 'quote-string' and 'shell-double-quote'. Add 'shell-single-quote'. Add clause for 'literal-string' records. * tests/guix-home.sh: Test it. * doc/guix.texi (Essential Home Services): Document it. 2022-08-05tests: Make tests inside container reproducible.Andrew Tropin * tests/guix-home.sh: Make tests inside container reproducible. Signed-off-by: Ludovic Courtès <ludo@gnu.org> 2022-07-14home: services: environment-variables: Double-quote values.Ludovic Courtès Fixes <https://issues.guix.gnu.org/54469>. Reported by Maxime Devos <maximedevos@telenet.be>. * gnu/home/services.scm (environment-variable-shell-definitions): New procedure, with code formerly in 'serialize-posix-env-vars'. (environment-variables->setup-environment-script): Change "setup-environment" from 'mixed-text-file' to 'computed-file', and use 'environment-variable-shell-definitions'. * tests/guix-home.sh: Test it. * gnu/home/services/shells.scm (serialize-posix-env-vars): Delegate to 'environment-variable-shell-definitions'. 2022-07-14home: services: shells: Double-quote environment variable values.Ludovic Courtès Fixes <https://issues.guix.gnu.org/56540>. Until now, environment variable values were emitted unquoted, producing invalid shell code if the value contains spaces for example. * gnu/home/services/shells.scm (serialize-posix-env-vars): Define 'shell-quote' procedure in staged code and use it for #$value. * tests/guix-home.sh: Add test for PS1 variable with a value containing spaces.