Skip to content

Commit

Permalink
cbfstool: 4.7 -> 4.9
Browse files Browse the repository at this point in the history
also fix source, followup of NixOS#55066
  • Loading branch information
flokli committed Feb 2, 2019
1 parent a9bf045 commit bb49dca
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions pkgs/applications/virtualization/cbfstool/default.nix
@@ -1,13 +1,12 @@
{ stdenv, fetchgit, iasl, flex, bison }:
{ stdenv, fetchurl, iasl, flex, bison }:

stdenv.mkDerivation rec {
name = "cbfstool-${version}";
version = "4.7";
version = "4.9";

src = fetchgit {
url = "http://review.coreboot.org/p/coreboot";
rev = "refs/tags/${version}";
sha256 = "02k63013vf7wgsilslj68fs1x81clvqpn91dydaqhv5aymh73zpi";
src = fetchurl {
url = "https://coreboot.org/releases/coreboot-${version}.tar.xz";
sha256 = "0xkai65d3z9fivwscbkm7ndcw2p9g794xz8fwdv979w77n5qsdij";
};

nativeBuildInputs = [ flex bison ];
Expand Down

0 comments on commit bb49dca

Please sign in to comment.