3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/virtualization/cbfstool/default.nix

36 lines
855 B
Nix
Raw Normal View History

{ stdenv, fetchurl, iasl, flex, bison }:
2015-07-09 15:27:10 +01:00
stdenv.mkDerivation rec {
name = "cbfstool-${version}";
version = "4.9";
2015-07-09 15:27:10 +01:00
src = fetchurl {
url = "https://coreboot.org/releases/coreboot-${version}.tar.xz";
sha256 = "0xkai65d3z9fivwscbkm7ndcw2p9g794xz8fwdv979w77n5qsdij";
2015-07-09 15:27:10 +01:00
};
nativeBuildInputs = [ flex bison ];
buildInputs = [ iasl ];
2016-02-09 01:00:21 +00:00
2015-07-09 15:27:10 +01:00
buildPhase = ''
export LEX=${flex}/bin/flex
make -C util/cbfstool
'';
installPhase = ''
mkdir -p $out/bin
cp util/cbfstool/cbfstool $out/bin
cp util/cbfstool/fmaptool $out/bin
cp util/cbfstool/rmodtool $out/bin
'';
meta = with stdenv.lib; {
description = "Management utility for CBFS formatted ROM images";
2017-08-17 22:58:28 +01:00
homepage = https://www.coreboot.org;
2015-07-09 15:27:10 +01:00
license = licenses.gpl2;
maintainers = [ maintainers.tstrobel ];
platforms = platforms.linux;
};
}