mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
cbmem: init at 4.9
This commit is contained in:
parent
08939a7902
commit
64c5ea07da
28
pkgs/tools/misc/cbmem/default.nix
Normal file
28
pkgs/tools/misc/cbmem/default.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "cbmem";
|
||||
version = "4.9";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://coreboot.org/releases/coreboot-${version}.tar.xz";
|
||||
sha256 = "0xkai65d3z9fivwscbkm7ndcw2p9g794xz8fwdv979w77n5qsdij";
|
||||
};
|
||||
|
||||
buildPhase = ''
|
||||
make -C util/cbmem
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
install -Dm755 util/cbmem/cbmem $out/bin/cbmem
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Read coreboot timestamps and console logs";
|
||||
homepage = "https://www.coreboot.org";
|
||||
license = licenses.gpl2;
|
||||
maintainers = [ maintainers.petabyteboy ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
@ -14750,6 +14750,8 @@ in
|
||||
|
||||
ifdtool = callPackage ../tools/misc/ifdtool { };
|
||||
|
||||
cbmem = callPackage ../tools/misc/cbmem { };
|
||||
|
||||
nvramtool = callPackage ../tools/misc/nvramtool { };
|
||||
|
||||
vmfs-tools = callPackage ../tools/filesystems/vmfs-tools { };
|
||||
|
Loading…
Reference in New Issue
Block a user