From 76239a04354b501e6cd0bd9526da9a6b8bf1e433 Mon Sep 17 00:00:00 2001 From: Ryan Omasta Date: Wed, 28 May 2025 02:43:04 -0600 Subject: [PATCH] limine: 9.3.2 -> 9.3.3 https://github.com/limine-bootloader/limine/releases/tag/v9.3.3 Diff: https://github.com/limine-bootloader/limine/compare/v9.3.2...v9.3.3 --- pkgs/by-name/li/limine/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/li/limine/package.nix b/pkgs/by-name/li/limine/package.nix index 5b2c52b1c11b..480b43914bae 100644 --- a/pkgs/by-name/li/limine/package.nix +++ b/pkgs/by-name/li/limine/package.nix @@ -42,14 +42,14 @@ in # as bootloader for various platforms and corresponding binary and helper files. stdenv.mkDerivation (finalAttrs: { pname = "limine"; - version = "9.3.2"; + version = "9.3.3"; # We don't use the Git source but the release tarball, as the source has a # `./bootstrap` script performing network access to download resources. # Packaging that in Nix is very cumbersome. src = fetchurl { url = "https://github.com/limine-bootloader/limine/releases/download/v${finalAttrs.version}/limine-${finalAttrs.version}.tar.gz"; - hash = "sha256-aYzNgErrlRIIv4hmekdoPMCZ4g5xDYIeTUJhEkfuuJQ="; + hash = "sha256-+yhHFt9SvYUl/tjfwZyR0OJK8+BDzieLS2AFY1VyNLE="; }; enableParallelBuilding = true;