Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
363 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
fetchFromGitHub,
gnu-efi,
refind,
}:
gnu-efi.overrideAttrs (
finalAttrs: prevAttrs: {
version = "3.0.19";
src = fetchFromGitHub {
owner = "ncroxon";
repo = "gnu-efi";
rev = finalAttrs.version;
hash = "sha256-xtiKglLXm9m4li/8tqbOsyM6ThwGhyu/g4kw5sC4URY=";
};
passthru.tests = {
inherit refind;
};
}
)