mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
refind: 0.13.2 -> 0.13.3.1
Among other fixes contains support for newer gnu-efi. Added boot.uefiCdrom test. Changes: https://sourceforge.net/p/refind/code/ci/master/tree/NEWS.txt
This commit is contained in:
parent
c1602f79c3
commit
4839ffca1f
1 changed files with 7 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
|||
{ lib, stdenv, fetchurl, gnu-efi }:
|
||||
{ lib, stdenv, fetchurl, gnu-efi, nixosTests }:
|
||||
|
||||
let
|
||||
archids = {
|
||||
|
@ -14,11 +14,11 @@ in
|
|||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "refind";
|
||||
version = "0.13.2";
|
||||
version = "0.13.3.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/project/refind/${version}/${pname}-src-${version}.tar.gz";
|
||||
sha256 = "0w6990ggns4xsdmgj3aq527q15frrxfmxwa3m6igabd4ai498n6x";
|
||||
sha256 = "1lfgqqiyl6isy25wrxzyi3s334ii057g88714igyjjmxh47kygks";
|
||||
};
|
||||
|
||||
patches = [
|
||||
|
@ -107,6 +107,10 @@ stdenv.mkDerivation rec {
|
|||
runHook postInstall
|
||||
'';
|
||||
|
||||
passthru.tests = {
|
||||
uefiCdrom = nixosTests.boot.uefiCdrom;
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "A graphical {,U}EFI boot manager";
|
||||
longDescription = ''
|
||||
|
|
Loading…
Reference in a new issue