ifdtool: init at 4.9
This commit is contained in:
parent
ece22b62bb
commit
8ad32a7e98
@ -3485,6 +3485,11 @@
|
|||||||
github = "pesterhazy";
|
github = "pesterhazy";
|
||||||
name = "Paulus Esterhazy";
|
name = "Paulus Esterhazy";
|
||||||
};
|
};
|
||||||
|
petabyteboy = {
|
||||||
|
email = "me@pbb.lc";
|
||||||
|
github = "petabyteboy";
|
||||||
|
name = "Milan Pässler";
|
||||||
|
};
|
||||||
peterhoeg = {
|
peterhoeg = {
|
||||||
email = "peter@hoeg.com";
|
email = "peter@hoeg.com";
|
||||||
github = "peterhoeg";
|
github = "peterhoeg";
|
||||||
|
28
pkgs/tools/misc/ifdtool/default.nix
Normal file
28
pkgs/tools/misc/ifdtool/default.nix
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
{ stdenv, fetchurl }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "ifdtool-${version}";
|
||||||
|
version = "4.9";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://coreboot.org/releases/coreboot-${version}.tar.xz";
|
||||||
|
sha256 = "0xkai65d3z9fivwscbkm7ndcw2p9g794xz8fwdv979w77n5qsdij";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildPhase = ''
|
||||||
|
make -C util/ifdtool
|
||||||
|
'';
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
install -Dm755 util/ifdtool/ifdtool $out/bin/ifdtool
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Extract and dump Intel Firmware Descriptor information";
|
||||||
|
homepage = https://www.coreboot.org;
|
||||||
|
license = licenses.gpl2;
|
||||||
|
maintainers = [ maintainers.petabyteboy ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -13855,6 +13855,8 @@ in
|
|||||||
|
|
||||||
cbfstool = callPackage ../applications/virtualization/cbfstool { };
|
cbfstool = callPackage ../applications/virtualization/cbfstool { };
|
||||||
|
|
||||||
|
ifdtool = callPackage ../tools/misc/ifdtool { };
|
||||||
|
|
||||||
nvramtool = callPackage ../tools/misc/nvramtool { };
|
nvramtool = callPackage ../tools/misc/nvramtool { };
|
||||||
|
|
||||||
vmfs-tools = callPackage ../tools/filesystems/vmfs-tools { };
|
vmfs-tools = callPackage ../tools/filesystems/vmfs-tools { };
|
||||||
|
Loading…
Reference in New Issue
Block a user