coreboot-utils: 24.02 -> 24.05

Release notes: https://github.com/coreboot/coreboot/blob/main/Documentation/releases/coreboot-24.05-relnotes.md
This commit is contained in:
Jared Baur
2024-05-19 00:39:31 -07:00
parent 2e3f58d22c
commit 1810986433
+4 -4
View File
@@ -1,7 +1,7 @@
{ lib, stdenv, fetchgit, pkg-config, zlib, pciutils, openssl, coreutils, acpica-tools, makeWrapper, gnugrep, gnused, file, buildEnv }:
let
version = "24.02";
version = "24.05";
commonMeta = with lib; {
description = "Various coreboot-related tools";
@@ -11,13 +11,13 @@ let
platforms = platforms.linux;
};
generic = { pname, path ? "util/${pname}", ... }@args: stdenv.mkDerivation (rec {
generic = { pname, path ? "util/${pname}", ... }@args: stdenv.mkDerivation ({
inherit pname version;
src = fetchgit {
url = "https://review.coreboot.org/coreboot";
rev = "4845b69db29107ce8d9cd2969b4aad5c7daa6399";
sha256 = "sha256-whALKP9MetyMJSmXVf0WYd9dP8AGa+ADAB8cmIqt4HU=";
rev = version;
hash = "sha256-Fq3tZje6QoMskxqWd61OstgI9Sj25yijf8S3LiTJuYc=";
};
enableParallelBuilding = true;