From b34eb09311b0e761c7883de1f7053174ee1e773c Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Wed, 2 Feb 2022 12:01:15 +0200 Subject: gnu: syncthing: Add release-monitoring-url. * gnu/packages/syncthing.scm (syncthing)[properties]: New field. --- gnu/packages/syncthing.scm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gnu/packages/syncthing.scm b/gnu/packages/syncthing.scm index c19cc97862..8e857d5614 100644 --- a/gnu/packages/syncthing.scm +++ b/gnu/packages/syncthing.scm @@ -137,6 +137,9 @@ supports a wide variety of computing platforms. It uses the Block Exchange Protocol.") (home-page "https://github.com/syncthing/syncthing") + (properties + '((release-monitoring-url . "https://github.com/syncthing/syncthing/releases") + (upstream-name . "syncthing-source"))) (license mpl2.0))) (define-public syncthing-gtk -- cgit v1.2.3 '> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/bootloader.scm
AgeCommit message (Collapse)Author
2020-11-17gnu: bootloader: efi-bootloader-chain: Allow multiple HOOKS.Stefan
* gnu/bootloader.scm (efi-bootloader-profile): Allow multiple HOOKS. (efi-bootloader-chain): Allow multiple HOOKS. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
2020-11-16gnu: bootloader: Support chain loading to an EFI bootloader.Stefan
* gnu/bootloader.scm (efi-bootloader-profile): New function. (efi-bootloader-chain): New function. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
2020-06-08bootloader: Extend `<menu-entry>' for multiboot.Jan (janneke) Nieuwenhuizen
* gnu/bootloader.scm (<menu-entry>)[multiboot-kernel,multiboot-arguments, multiboot-modules]: New fields. [linux,initrd]: Add default value '#f'. (menu-entry->sexp, sexp->menu-entry): Support multiboot entry. * doc/guix.texi (Bootloader Configuration): Document them.
2020-05-29bootloader: Add 'disk-image-installer'.Mathieu Othacehe
* gnu/bootloader.scm (<bootloader>)[disk-image-installer]: New field, (bootloader-disk-image-installer): export it. * gnu/bootloader/grub.scm (install-grub-disk-image): New procedure ... (grub-bootloader): ... used as "disk-image-installer" here. (grub-efi-bootloader): set "disk-image-installer" to #f. * gnu/system/image.scm (root-partition?, find-root-partition): Move to "Helpers" section. (root-partition-index): New procedure. (system-disk-image): Honor disk-image-installer, and use it to install the bootloader directly on the disk-image, if supported.
2019-08-30system: Add 'bootloader-menu-entries' field to <boot-parameters>.Ludovic Courtès
This allows us to keep track of the extra menu entries specified in the OS configuration. * gnu/system.scm (<boot-parameters>)[bootloader-menu-entries]: New field. (read-boot-parameters): Initialize it. (operating-system-boot-parameters): Likewise. (operating-system-boot-parameters-file): Serialize it. * gnu/bootloader.scm (menu-entry->sexp, sexp->menu-entry): New procedures.
2019-08-30bootloader: Fix comment about 'menu-entries'.Ludovic Courtès
* gnu/bootloader.scm (<bootloader-configuration>)[menu-entries]: Fix margin comment.