cbfstool: 4.7 -> 4.9

also fix source, followup of #55066
This commit is contained in:
Florian Klink 2019-02-02 23:30:16 +01:00
parent a9bf0456c2
commit bb49dca6aa
1 changed files with 5 additions and 6 deletions

View File

@ -1,13 +1,12 @@
{ stdenv, fetchgit, iasl, flex, bison }: { stdenv, fetchurl, iasl, flex, bison }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "cbfstool-${version}"; name = "cbfstool-${version}";
version = "4.7"; version = "4.9";
src = fetchgit { src = fetchurl {
url = "http://review.coreboot.org/p/coreboot"; url = "https://coreboot.org/releases/coreboot-${version}.tar.xz";
rev = "refs/tags/${version}"; sha256 = "0xkai65d3z9fivwscbkm7ndcw2p9g794xz8fwdv979w77n5qsdij";
sha256 = "02k63013vf7wgsilslj68fs1x81clvqpn91dydaqhv5aymh73zpi";
}; };
nativeBuildInputs = [ flex bison ]; nativeBuildInputs = [ flex bison ];