coreboot-{toolchain, utils}: 3

Coreboot 24.05 updates
This commit is contained in:
nicoo 2024-05-22 22:30:29 +00:00 committed by GitHub
commit 279542437e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 14 additions and 14 deletions

View File

@ -19,12 +19,12 @@ let
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "coreboot-toolchain-${arch}";
version = "24.02";
version = "24.05";
src = fetchgit {
url = "https://review.coreboot.org/coreboot";
rev = finalAttrs.version;
hash = "sha256-fHulr7w5I9LzBwGt/ZVaN7A3XEd7uQ2eJJifxII7rtk=";
hash = "sha256-jTfMFvl3sG3BIVVkpZ81BQ20Bs+2ESE6RMh0fW86rKE=";
fetchSubmodules = false;
leaveDotGit = true;
postFetch = ''
@ -63,7 +63,7 @@ let
homepage = "https://www.coreboot.org";
description = "coreboot toolchain for ${arch} targets";
license = with licenses; [ bsd2 bsd3 gpl2 lgpl2Plus gpl3Plus ];
maintainers = with maintainers; [ felixsinger ];
maintainers = with maintainers; [ felixsinger jmbaur ];
platforms = platforms.linux;
};
})

View File

@ -28,17 +28,17 @@
};
}
{
name = "binutils-2.41.tar.xz";
name = "binutils-2.42.tar.xz";
archive = fetchurl {
sha256 = "0l3l003dynq11ppr2h8p0cfc7zyky8ilfwg60sbfan9lwa4mg6mf";
url = "mirror://gnu/binutils/binutils-2.41.tar.xz";
sha256 = "0058hngi16793aja9ih623mfr98dcarmf549nw38nxzwslgx9r7n";
url = "mirror://gnu/binutils/binutils-2.42.tar.xz";
};
}
{
name = "R06_28_23.tar.gz";
name = "acpica-unix-20230628.tar.gz";
archive = fetchurl {
sha256 = "0cadxihshyrjplrx01vna13r1m2f6lj1klw7mh8pg2m0gjdpjj12";
url = "https://github.com/acpica/acpica/archive/refs/tags/R06_28_23.tar.gz";
sha256 = "1kjwzyfrmw0fhawjvpqib3l5jxdlcpj3vv92sb7ls8ixbrs6m1w6";
url = "https://downloadmirror.intel.com/783534/acpica-unix-20230628.tar.gz";
};
}
{

View File

@ -1,23 +1,23 @@
{ 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";
homepage = "https://www.coreboot.org";
license = with licenses; [ gpl2Only gpl2Plus ];
maintainers = with maintainers; [ felixsinger ];
maintainers = with maintainers; [ felixsinger jmbaur ];
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;