intelmetool: init at 4.8.1
This commit is contained in:
parent
716a38d015
commit
bc4c3e5cb9
32
pkgs/tools/misc/intelmetool/default.nix
Normal file
32
pkgs/tools/misc/intelmetool/default.nix
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
{ stdenv, fetchgit, zlib, pciutils }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "intelmetool-${version}";
|
||||||
|
version = "4.8.1";
|
||||||
|
|
||||||
|
src = fetchgit {
|
||||||
|
url = "https://review.coreboot.org/coreboot.git";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "1gjisy9b7vgzjvy1fwaqhq3589yd59kkylv7apjmg5r2b3dv4zvr";
|
||||||
|
fetchSubmodules = false;
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ zlib pciutils ];
|
||||||
|
|
||||||
|
buildPhase = ''
|
||||||
|
make -C util/intelmetool
|
||||||
|
'';
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out/bin
|
||||||
|
cp util/intelmetool/intelmetool $out/bin
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Dump interesting things about Management Engine";
|
||||||
|
homepage = https://www.coreboot.org/Nvramtool;
|
||||||
|
license = licenses.gpl2;
|
||||||
|
maintainers = [ maintainers.gnidorah ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -10256,6 +10256,8 @@ in
|
|||||||
|
|
||||||
ilmbase = callPackage ../development/libraries/ilmbase { };
|
ilmbase = callPackage ../development/libraries/ilmbase { };
|
||||||
|
|
||||||
|
intelmetool = callPackage ../tools/misc/intelmetool { };
|
||||||
|
|
||||||
imlib = callPackage ../development/libraries/imlib {
|
imlib = callPackage ../development/libraries/imlib {
|
||||||
libpng = libpng12;
|
libpng = libpng12;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user