aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/nvi.scm
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2023-03-19 21:01:39 +0100
committerRicardo Wurmus <rekado@elephly.net>2023-03-19 21:01:39 +0100
commit4532e7f415c6116c74f8bc231fc78e4c8bdae848 (patch)
tree192bf080b9c8b46822d03e1c4ea7cf3f8cf0aacc /gnu/packages/nvi.scm
parent157733c8f23057143d867defe76e72cf9c28ca82 (diff)
downloadguix-4532e7f415c6116c74f8bc231fc78e4c8bdae848.tar.gz
guix-4532e7f415c6116c74f8bc231fc78e4c8bdae848.zip
gnu: r-gtable: Update to 0.3.2.
* gnu/packages/statistics.scm (r-gtable): Update to 0.3.2. [propagated-inputs]: Add r-cli, r-glue, r-lifecycle, and r-rlang.
Diffstat (limited to 'gnu/packages/nvi.scm')
0 files changed, 0 insertions, 0 deletions
..this. (dry-run-final-page, run-final-page): New procedures. * gnu/installer/parted.scm (bootloader-configuration): Cater for empty user partitions. * gnu/installer/utils.scm (dry-run-command): New procedure. * gnu/installer.scm (compute-locale-step): Add #:dry-run? parameter. Use it to avoid actually applying locale. (compute-keymap-step): Add dry-run? parameter. Pass it to keymap-page. (installer-program): Add #:dry-run? parameter. If #:true avoid writing to /proc, use dry-run-command, skip sync and reboot, and pass dry-run? to... (installer-steps): ...here. Add #:dry-run? parameter. Use it to disable skip network, substitutes, partitioning pages, and pass it to... compute-locale-step, compute-keymap-step, and final-page. Change-Id: I0ff4c3b0a0c69539af617c27ba37654beed44619 Janneke Nieuwenhuizen 2024-11-11installer: Use `%' for parameter %run-command-in-installer....* gnu/installer/utils.scm (run-command-in-installer): Rename to... (%run-command-in-installer): ...this. * gnu/installer.scm (installer-program): Update accordingly. * gnu/installer/parted.scm (remove-logical-devices, create-btrfs-file-system, create-ext4-file-system, create-fat16-file-system, create-fat32-file-system, create-jfs-file-system, create-ntfs-file-system, create-xfs-file-system, create-swap-partition, luks-format-and-open, luks-ensure-open, luks-close): Update accordingly. Change-Id: I96ebc59ebc85fd8ebccb0cc57130b4e7532d287f Janneke Nieuwenhuizen 2024-08-31installer: Create ext4 file systems with ‘-O large_dir’....* gnu/installer/parted.scm (create-ext4-file-system): Pass ‘-O large_dir’ to ‘mkfs.ext4’. Change-Id: Ie34039ed03f273505e7f7fb5c3241120e3395ba2 Ludovic Courtès 2022-12-10installer: Detect mapped installation devices....Fixes: <https://issues.guix.gnu.org/59823> * gnu/installer/parted.scm (mapped-device?, mapped-device-parent-partition): New procedures. (eligible-devices): Detect mapped installation devices using the new procedures. Mathieu Othacehe