refind: 0.13.3.1 -> 0.14.0.2

Changelog

- https://sourceforge.net/p/refind/code/ci/bf6c58c0b1e4be6548f1d1549e8074be72457582/tree/NEWS.txt

authored by

Samuel Dionne-Riel and committed by
Anderson Torres
62ff1ef2 f2bd8adf

+2 -9
+2 -9
pkgs/tools/bootloaders/refind/default.nix
··· 14 14 15 15 stdenv.mkDerivation rec { 16 16 pname = "refind"; 17 - version = "0.13.3.1"; 17 + version = "0.14.0.2"; 18 18 19 19 src = fetchurl { 20 20 url = "mirror://sourceforge/project/refind/${version}/${pname}-src-${version}.tar.gz"; 21 - sha256 = "1lfgqqiyl6isy25wrxzyi3s334ii057g88714igyjjmxh47kygks"; 21 + hash = "sha256-JqDFXf01ZUmeH4LY/ldGTb7xnKiGzm0BqBUii478iw8="; 22 22 }; 23 23 24 24 patches = [ 25 25 # Removes hardcoded toolchain for aarch64, allowing successful aarch64 builds. 26 26 ./0001-toolchain.patch 27 - 28 - # Fixes issue with null dereference in ReadHiddenTags 29 - # Upstream: https://sourceforge.net/p/refind/code/merge-requests/45/ 30 - (fetchpatch { 31 - url = "https://github.com/samueldr/rEFInd/commit/29cd79dedabf84d5ddfe686f5692278cae6cc4d6.patch"; 32 - sha256 = "sha256-/jAmOwvMmFWazyukN+ru1tQDiIBtgGk/e/pczsl1Xc8="; 33 - }) 34 27 ]; 35 28 36 29 buildInputs = [ gnu-efi ];