Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 20 lines 363 B view raw
1{ 2 fetchFromGitHub, 3 gnu-efi, 4 refind, 5}: 6 7gnu-efi.overrideAttrs ( 8 finalAttrs: prevAttrs: { 9 version = "3.0.19"; 10 src = fetchFromGitHub { 11 owner = "ncroxon"; 12 repo = "gnu-efi"; 13 rev = finalAttrs.version; 14 hash = "sha256-xtiKglLXm9m4li/8tqbOsyM6ThwGhyu/g4kw5sC4URY="; 15 }; 16 passthru.tests = { 17 inherit refind; 18 }; 19 } 20)