aboutsummaryrefslogtreecommitdiff
path: root/tests/cache.scm
diff options
context:
space:
mode:
authorOleg Pykhalov <go.wigust@gmail.com>2024-05-04 10:43:16 +0300
committerOleg Pykhalov <go.wigust@gmail.com>2024-05-04 10:45:33 +0300
commitfc607d3689b244e7bb20d3db605372ed3e99572b (patch)
treefeab542abd03260a60965cdf7d8cf7cb668490cc /tests/cache.scm
parent9bf19720b961c5f5461a2f24fe178b82e46c2b37 (diff)
downloadguix-fc607d3689b244e7bb20d3db605372ed3e99572b.tar.gz
guix-fc607d3689b244e7bb20d3db605372ed3e99572b.zip
gnu: cava: Update to 0.10.1.
* gnu/packages/audio.scm (cava)[version]: Update to 0.10.1. [native-inputs]: Add pkg-config. [inputs]: Add alsa-lib and pipewire. Change-Id: Iffa80b22199a032111ca06e8ed583139f35f2fab
Diffstat (limited to 'tests/cache.scm')
0 files changed, 0 insertions, 0 deletions
6dc53a2d1cf8'>installer: Add comments and vertical space to the generated config....* gnu/installer/parted.scm (user-partitions->configuration): Introduce vertical space and a comment. * gnu/installer/services.scm (G_): New macro. (%system-services): Add comment for OpenSSH. (system-services->configuration): Add vertical space and comments. * gnu/installer/user.scm (users->configuration): Add comment. * gnu/installer/steps.scm (format-configuration): Add comment. (configuration->file): Expound leading comment. Pass #:format-comment to 'pretty-print-with-comments/splice'. Ludovic Courtès 2022-08-05installer: parted: Call set-system before set-flags....Parted 3.5 introduces the following regression: - partition-set-flag sets the BIOS_GRUB flag. The partition type is set to PARTITION_BIOS_GRUB_GUID. - partition-set-system resets the partition type to PARTITION_LINUX_DATA_GUID undoing what's done by partition-set-flag. To prevent it, reverse the call order. Fixes: <https://issues.guix.gnu.org/55549>. * gnu/installer/parted.scm (mkpart): Call partition-set-system before partition-set-flag. Mathieu Othacehe 2022-08-05installer: parted: Log partition flags....* gnu/installer/parted.scm (mkpart): Log them. Mathieu Othacehe