about summary refs log tree commit diff
path: root/pkgs/tools/misc/coreboot-utils
diff options
context:
space:
mode:
authorMilan <me@pbb.lc>2021-01-03 00:27:49 +0100
committerGitHub <noreply@github.com>2021-01-03 00:27:49 +0100
commit3b7d783cb0fbdc3b14a36451ad2f94d01521f610 (patch)
tree091453b5faf1246d364ee13dfe8a5e6c7537a842 /pkgs/tools/misc/coreboot-utils
parentf224edb877360161f3fcfd8c5934bbee36225991 (diff)
coreboot-utils: 4.12 -> 4.13 (#108254)
Diffstat (limited to 'pkgs/tools/misc/coreboot-utils')
-rw-r--r--pkgs/tools/misc/coreboot-utils/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/misc/coreboot-utils/default.nix b/pkgs/tools/misc/coreboot-utils/default.nix
index 39e2e041e3265..84a5d3b325545 100644
--- a/pkgs/tools/misc/coreboot-utils/default.nix
+++ b/pkgs/tools/misc/coreboot-utils/default.nix
@@ -1,7 +1,7 @@
 { stdenv, fetchurl, zlib, pciutils, coreutils, acpica-tools, iasl, makeWrapper, gnugrep, gnused, file, buildEnv }:
 
 let
-  version = "4.12";
+  version = "4.13";
 
   commonMeta = with stdenv.lib; {
     description = "Various coreboot-related tools";
@@ -16,7 +16,7 @@ let
 
     src = fetchurl {
       url = "https://coreboot.org/releases/coreboot-${version}.tar.xz";
-      sha256 = "1qibds9lsk22wf1sxwg0jg32fgcvc9an39vf74y1hwwvxq0d1jpd";
+      sha256 = "0sl50aajnah4a138sr3jjm3ydc8gfh5vvlhviz3ypp95b9jdlya7";
     };
 
     enableParallelBuilding = true;
@@ -89,7 +89,7 @@ let
       nativeBuildInputs = [ makeWrapper ];
       dontBuild = true;
       installPhase = "install -Dm755 acpidump-all $out/bin/acpidump-all";
-      postFixup = let 
+      postFixup = let
         binPath = [ coreutils  acpica-tools iasl gnugrep  gnused  file ];
       in "wrapProgram $out/bin/acpidump-all --set PATH ${stdenv.lib.makeBinPath binPath}";
     };