mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
cbfstool: init at git-2015-07-09
This commit is contained in:
parent
df038c93cc
commit
90cad1bc0c
35
pkgs/applications/virtualization/cbfstool/default.nix
Normal file
35
pkgs/applications/virtualization/cbfstool/default.nix
Normal file
@ -0,0 +1,35 @@
|
||||
{ stdenv, fetchgit, iasl, flex, bison }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "cbfstool-${version}";
|
||||
version = "git-2015-07-09";
|
||||
|
||||
src = fetchgit {
|
||||
url = "http://review.coreboot.org/p/coreboot";
|
||||
rev = "5d866213f42fd22aed80abb5a91d74f6d485ac3f";
|
||||
sha256 = "148155829jbabsgg1inmcpqmwbg0fgp8a685bzybv9j4ibasi0z2";
|
||||
};
|
||||
|
||||
buildInputs = [ iasl flex bison ];
|
||||
|
||||
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 = "CBFS tool";
|
||||
homepage = http://www.coreboot.org;
|
||||
license = licenses.gpl2;
|
||||
maintainers = [ maintainers.tstrobel ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
@ -9061,6 +9061,8 @@ let
|
||||
|
||||
seabios = callPackage ../applications/virtualization/seabios { };
|
||||
|
||||
cbfstool = callPackage ../applications/virtualization/cbfstool { };
|
||||
|
||||
pgpool92 = pgpool.override { postgresql = postgresql92; };
|
||||
pgpool93 = pgpool.override { postgresql = postgresql93; };
|
||||
pgpool94 = pgpool.override { postgresql = postgresql94; };
|
||||
|
Loading…
Reference in New Issue
Block a user