Skip to content

Commit d74d174

Browse files
[Backport release-25.05] limine: 9.5.2 -> 9.6.0 (#434310)
2 parents 14e132c + e510beb commit d74d174

File tree

1 file changed

+3
-10
lines changed

1 file changed

+3
-10
lines changed

pkgs/by-name/li/limine/package.nix

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -42,20 +42,19 @@ in
4242
# as bootloader for various platforms and corresponding binary and helper files.
4343
stdenv.mkDerivation (finalAttrs: {
4444
pname = "limine";
45-
version = "9.5.4";
45+
version = "9.6.1";
4646

4747
# We don't use the Git source but the release tarball, as the source has a
4848
# `./bootstrap` script performing network access to download resources.
4949
# Packaging that in Nix is very cumbersome.
5050
src = fetchurl {
5151
url = "https://github.com/limine-bootloader/limine/releases/download/v${finalAttrs.version}/limine-${finalAttrs.version}.tar.gz";
52-
hash = "sha256-X0dStbsBJyFDUG25G4PUZInp+yVG3+p3bfhwQL280ig=";
52+
hash = "sha256-/GAeZx2ShtC+VoqNO/SB8H4kLLgdLAc/RAGVxF6Imbc=";
5353
};
5454

5555
enableParallelBuilding = true;
5656

5757
nativeBuildInputs = [
58-
llvmPackages.clang-unwrapped
5958
llvmPackages.libllvm
6059
llvmPackages.lld
6160
]
@@ -79,13 +78,7 @@ stdenv.mkDerivation (finalAttrs: {
7978
++ lib.optionals pxeSupport' [ "--enable-bios-pxe" ]
8079
++ lib.concatMap uefiFlags (
8180
if targets == [ ] then [ stdenv.hostPlatform.parsed.cpu.name ] else targets
82-
)
83-
++ [
84-
"TOOLCHAIN_FOR_TARGET=llvm"
85-
# `clang` on `PATH` has to be unwrapped, but *a* wrapped clang
86-
# still needs to be available
87-
"CC=${lib.getExe stdenv.cc}"
88-
];
81+
);
8982

9083
passthru.tests = nixosTests.limine;
9184

0 commit comments

Comments
 (0)