coreboot-{toolchain, utils}: 3

Coreboot 24.05 updates

authored by nicoo and committed by GitHub 27954243 14800786

+14 -14
+3 -3
pkgs/development/tools/misc/coreboot-toolchain/default.nix
··· 19 20 stdenvNoCC.mkDerivation (finalAttrs: { 21 pname = "coreboot-toolchain-${arch}"; 22 - version = "24.02"; 23 24 src = fetchgit { 25 url = "https://review.coreboot.org/coreboot"; 26 rev = finalAttrs.version; 27 - hash = "sha256-fHulr7w5I9LzBwGt/ZVaN7A3XEd7uQ2eJJifxII7rtk="; 28 fetchSubmodules = false; 29 leaveDotGit = true; 30 postFetch = '' ··· 63 homepage = "https://www.coreboot.org"; 64 description = "coreboot toolchain for ${arch} targets"; 65 license = with licenses; [ bsd2 bsd3 gpl2 lgpl2Plus gpl3Plus ]; 66 - maintainers = with maintainers; [ felixsinger ]; 67 platforms = platforms.linux; 68 }; 69 })
··· 19 20 stdenvNoCC.mkDerivation (finalAttrs: { 21 pname = "coreboot-toolchain-${arch}"; 22 + version = "24.05"; 23 24 src = fetchgit { 25 url = "https://review.coreboot.org/coreboot"; 26 rev = finalAttrs.version; 27 + hash = "sha256-jTfMFvl3sG3BIVVkpZ81BQ20Bs+2ESE6RMh0fW86rKE="; 28 fetchSubmodules = false; 29 leaveDotGit = true; 30 postFetch = '' ··· 63 homepage = "https://www.coreboot.org"; 64 description = "coreboot toolchain for ${arch} targets"; 65 license = with licenses; [ bsd2 bsd3 gpl2 lgpl2Plus gpl3Plus ]; 66 + maintainers = with maintainers; [ felixsinger jmbaur ]; 67 platforms = platforms.linux; 68 }; 69 })
+6 -6
pkgs/development/tools/misc/coreboot-toolchain/stable.nix
··· 28 }; 29 } 30 { 31 - name = "binutils-2.41.tar.xz"; 32 archive = fetchurl { 33 - sha256 = "0l3l003dynq11ppr2h8p0cfc7zyky8ilfwg60sbfan9lwa4mg6mf"; 34 - url = "mirror://gnu/binutils/binutils-2.41.tar.xz"; 35 }; 36 } 37 { 38 - name = "R06_28_23.tar.gz"; 39 archive = fetchurl { 40 - sha256 = "0cadxihshyrjplrx01vna13r1m2f6lj1klw7mh8pg2m0gjdpjj12"; 41 - url = "https://github.com/acpica/acpica/archive/refs/tags/R06_28_23.tar.gz"; 42 }; 43 } 44 {
··· 28 }; 29 } 30 { 31 + name = "binutils-2.42.tar.xz"; 32 archive = fetchurl { 33 + sha256 = "0058hngi16793aja9ih623mfr98dcarmf549nw38nxzwslgx9r7n"; 34 + url = "mirror://gnu/binutils/binutils-2.42.tar.xz"; 35 }; 36 } 37 { 38 + name = "acpica-unix-20230628.tar.gz"; 39 archive = fetchurl { 40 + sha256 = "1kjwzyfrmw0fhawjvpqib3l5jxdlcpj3vv92sb7ls8ixbrs6m1w6"; 41 + url = "https://downloadmirror.intel.com/783534/acpica-unix-20230628.tar.gz"; 42 }; 43 } 44 {
+5 -5
pkgs/tools/misc/coreboot-utils/default.nix
··· 1 { lib, stdenv, fetchgit, pkg-config, zlib, pciutils, openssl, coreutils, acpica-tools, makeWrapper, gnugrep, gnused, file, buildEnv }: 2 3 let 4 - version = "24.02"; 5 6 commonMeta = with lib; { 7 description = "Various coreboot-related tools"; 8 homepage = "https://www.coreboot.org"; 9 license = with licenses; [ gpl2Only gpl2Plus ]; 10 - maintainers = with maintainers; [ felixsinger ]; 11 platforms = platforms.linux; 12 }; 13 14 - generic = { pname, path ? "util/${pname}", ... }@args: stdenv.mkDerivation (rec { 15 inherit pname version; 16 17 src = fetchgit { 18 url = "https://review.coreboot.org/coreboot"; 19 - rev = "4845b69db29107ce8d9cd2969b4aad5c7daa6399"; 20 - sha256 = "sha256-whALKP9MetyMJSmXVf0WYd9dP8AGa+ADAB8cmIqt4HU="; 21 }; 22 23 enableParallelBuilding = true;
··· 1 { lib, stdenv, fetchgit, pkg-config, zlib, pciutils, openssl, coreutils, acpica-tools, makeWrapper, gnugrep, gnused, file, buildEnv }: 2 3 let 4 + version = "24.05"; 5 6 commonMeta = with lib; { 7 description = "Various coreboot-related tools"; 8 homepage = "https://www.coreboot.org"; 9 license = with licenses; [ gpl2Only gpl2Plus ]; 10 + maintainers = with maintainers; [ felixsinger jmbaur ]; 11 platforms = platforms.linux; 12 }; 13 14 + generic = { pname, path ? "util/${pname}", ... }@args: stdenv.mkDerivation ({ 15 inherit pname version; 16 17 src = fetchgit { 18 url = "https://review.coreboot.org/coreboot"; 19 + rev = version; 20 + hash = "sha256-Fq3tZje6QoMskxqWd61OstgI9Sj25yijf8S3LiTJuYc="; 21 }; 22 23 enableParallelBuilding = true;