aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorギャラ <me@gyara.moe>2023-02-05 14:51:02 +0900
committerChristopher Baines <mail@cbaines.net>2023-02-07 09:12:37 +0100
commit7a87298e2fea9aa718c3b3b994c538dc4a6d35dd (patch)
tree165fb49921b3722ba56840fff305f626d9ba7aca
parent9b07a4b045be4fd3b69ea7b3ca1b2459c00032ba (diff)
downloadguix-7a87298e2fea9aa718c3b3b994c538dc4a6d35dd.tar.gz
guix-7a87298e2fea9aa718c3b3b994c538dc4a6d35dd.zip
gnu: neovim: Update to 0.8.3.
* gnu/packages/vim.scm (neovim): Update to 0.8.3. Signed-off-by: Christopher Baines <mail@cbaines.net>
-rw-r--r--gnu/packages/vim.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm
index 6939057ff2..0593986d87 100644
--- a/gnu/packages/vim.scm
+++ b/gnu/packages/vim.scm
@@ -692,7 +692,7 @@ are detected, the user is notified.")))
(define-public neovim
(package
(name "neovim")
- (version "0.8.2")
+ (version "0.8.3")
(source (origin
(method git-fetch)
(uri (git-reference
@@ -701,7 +701,7 @@ are detected, the user is notified.")))
(file-name (git-file-name name version))
(sha256
(base32
- "1jjw9a42l7wrziki2qznn7wiw5r59n4hs9i6g2hxnjyzixpg9xvl"))))
+ "1zff73yxbnxym6sn43xk6r0zc2ncingsib81v9g39ibrcinpwaa9"))))
(build-system cmake-build-system)
(arguments
(list #:modules
02402....* gnu/packages/firmware.scm (ovmf-aarch64): Update to 202402. Build using make-ovmf-firmware. Change-Id: I270bd8fa79f2df3d73bdf8d5685d27a3cc0cef6a Efraim Flashner 2024-05-27gnu: Add ovmf-i686....* gnu/packages/firmware.scm (ovmf-i686): New variable. Change-Id: Ie5702435695e24ed1d2731152a89b0aeb9a050dd Efraim Flashner 2024-05-27gnu: Add ovmf-x86-64....* gnu/packages/firmware.scm (make-ovmf-firmware): New procedure. (ovmf-x86-64): New variable. Change-Id: I283065577b5507f3b7d695eaa67a6d248174bcf5 Efraim Flashner 2024-05-27gnu: edk2-tools: Enable submodules....* gnu/packages/firmware.scm (edk2-tools)[source]: Checkout submodules. [arguments]: Don't disable building brotli or xz compression. Change-Id: I8b318373e38767e1a309e9e385f1626429bfbb20 Efraim Flashner 2024-05-27gnu: edk2-tools: Update to 202402....* gnu/packages/firmware.scm (edk2-tools): Update to 202402. Change-Id: I3ab7d75a8193faea2b3b3649f9b14bba48611187 Efraim Flashner 2024-05-22gnu: Add opensbi-for-visionfive2....* gnu/packages/firmware.scm (opensbi-for-visionfive2): New variable. Change-Id: I27963937410a3900a63193ce2a1033ac20a79919 Zheng Junjie 2024-04-17gnu: ath9k-htc-firmware: Split package....* gnu/local.mk (dist_patch_DATA): Remove ath9k-htc-firmware-objcopy.patch. * gnu/packages/firmware.scm (ath9k-htc-firmware): Remove. (ath9k-htc-ar7010-firmware, ath9k-htc-ar9271-firmware): New variables. * gnu/packages/patches/ath9k-htc-firmware-objcopy.patch: Delete file. * gnu/system.scm (%base-firmware): Use new ath9k packages. Change-Id: I86259e398427abd139c1f310a95bb15e2c03cee3 Co-authored-by: Ludovic Courtès <ludo@gnu.org> Jean-Pierre De Jesus DIAZ 2024-04-17gnu: cross-binutils: Use binutils-2.33 for ath9k....* gnu/packages/cross-base.scm (cross-binutils-package): New procedure. * gnu/packages/cross-base.scm (cross-binutils): Select binutils default value with cross-binutils-package. * gnu/packages/firmware.scm (ath9k-htc-firmware) <native-inputs>: Do not explicitly set the #:xbinutils keyword argument. Change-Id: I0eb25eb2b494241c205286837bfa79a61de8e0b7 Signed-off-by: Ludovic Courtès <ludo@gnu.org> Jean-Pierre De Jesus DIAZ 2024-04-17gnu: ath9k-htc-firmware: Use xtensa-ath9k-elf....* gnu/packages/firmware.scm (ath9k-htc-firmware): Use the xtensa-ath9k-elf target for the cross toolchain. Change-Id: Ic1a7c4088312290a86a508f371f4f0e784e301a5 Signed-off-by: Ludovic Courtès <ludo@gnu.org> Jean-Pierre De Jesus DIAZ 2024-04-17gnu: ath9k-htc-firmware: Allow using other targets....* gnu/packages/firmware.scm (ath9k-htc-firmware): Override the TARGET environment variable in the configure script to use xtensa-elf. * gnu/packages/patches/ath9k-htc-firmware-objcopy.patch: Adapt to use TARGET environment variable for objcopy. Change-Id: Ia44f0f25dde532b90168f2f2456412a43ac9af24 Signed-off-by: Ludovic Courtès <ludo@gnu.org> Jean-Pierre De Jesus DIAZ 2024-04-17gnu: ath9k-htc-firmware: Remove binary blobs....* gnu/packages/firmware.scm (ath9k-htc-firmware) <source>: Add snippet to remove bundled binary files. Change-Id: I2f0592d03039ff9d5a5f3a79b0c62566164f3762 Signed-off-by: Ludovic Courtès <ludo@gnu.org> Jean-Pierre De Jesus DIAZ 2024-03-31gnu: qmk: Support custom keyboards....* gnu/packages/firmware.scm (make-qmk-firmware/implementation): Add keyboard-source-directory parameter. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Change-Id: I68ae5df0b0aae088ca8002dca7e30de2b23e9aa0 Sergey Trofimov 2024-01-22gnu: make-crust-package: Unite firmware and tools....* gnu/packages/firmware.scm (make-crust-package): Perform union of make-crust-firmware and make-crust-tools. * gnu/packages/firmware.scm (make-crust-firmware): New procedure. Change-Id: I687bb6d53aae9bd60ed988baf9d17e92f31faa7b Jean-Pierre De Jesus DIAZ 2024-01-22gnu: Add make-crust-tools....* gnu/packages/firmware.scm (make-crust-tools): New procedure. Change-Id: Iac05ecf1796e4c10692a423c12423ea9b078d141 Jean-Pierre De Jesus DIAZ 2024-01-22gnu: make-crust-package: Use or1k-elf as target....* gnu/packages/firmware.scm (make-crust-package): Use or1k-elf as the target. Change-Id: I6c8bf053527f1e12e35402f18cebf8e75557c788 Jean-Pierre De Jesus DIAZ 2024-01-22gnu: make-crust-package: Update to 0.6....* gnu/packages/firmware.scm (make-crust-package): Update to 0.6. Do not install host tool as it is not built by default. Change-Id: Ia79ae8208589601d32235f6d8ace9dce3f8d74f9 Jean-Pierre De Jesus DIAZ 2024-01-22gnu: make-crust-package: Memoize....* gnu/packages/firmware.scm (make-crust-package): Use mlambda. Change-Id: I2d916b96bc650f3731a69505e086cf8f8f470809 Jean-Pierre De Jesus DIAZ 2024-01-22gnu: make-crust-package: Use shorter synopsis....* gnu/packages/firmware.scm (make-crust-package) <synopsis>: Make it short. Change-Id: I8b93b25a9a6a75aaa92ffa590d0fd46a5511fd49 Jean-Pierre De Jesus DIAZ 2024-01-12gnu: fwupd: Depend on libsmbios only on supported systems....* gnu/packages/firmware.scm (fwupd)[inputs]: Add libsmbios conditionally. Change-Id: Id34135b180f5ee6e7abd2fd4eb10e0d3c6308e06 Signed-off-by: Mathieu Othacehe <othacehe@gnu.org> Simon South