refind: 0.13.3.1 -> 0.14.0.2

Changelog

 - bf6c58c0b1/tree/NEWS.txt
This commit is contained in:
Samuel Dionne-Riel 2023-11-11 01:43:38 -05:00 committed by Anderson Torres
parent f2bd8adf7b
commit 62ff1ef239

View File

@ -14,23 +14,16 @@ in
stdenv.mkDerivation rec {
pname = "refind";
version = "0.13.3.1";
version = "0.14.0.2";
src = fetchurl {
url = "mirror://sourceforge/project/refind/${version}/${pname}-src-${version}.tar.gz";
sha256 = "1lfgqqiyl6isy25wrxzyi3s334ii057g88714igyjjmxh47kygks";
hash = "sha256-JqDFXf01ZUmeH4LY/ldGTb7xnKiGzm0BqBUii478iw8=";
};
patches = [
# Removes hardcoded toolchain for aarch64, allowing successful aarch64 builds.
./0001-toolchain.patch
# Fixes issue with null dereference in ReadHiddenTags
# Upstream: https://sourceforge.net/p/refind/code/merge-requests/45/
(fetchpatch {
url = "https://github.com/samueldr/rEFInd/commit/29cd79dedabf84d5ddfe686f5692278cae6cc4d6.patch";
sha256 = "sha256-/jAmOwvMmFWazyukN+ru1tQDiIBtgGk/e/pczsl1Xc8=";
})
];
buildInputs = [ gnu-efi ];