coreboot-utils: 4.19 -> 4.20 (#234054)

Release notes: https://doc.coreboot.org/releases/coreboot-4.20-relnotes.html#upcoming-release-coreboot-4-20

authored by Jared Baur and committed by GitHub eb532cff 2588db96

+6 -5
+6 -5
pkgs/tools/misc/coreboot-utils/default.nix
··· 1 - { lib, stdenv, fetchurl, pkg-config, zlib, pciutils, openssl, coreutils, acpica-tools, makeWrapper, gnugrep, gnused, file, buildEnv }: 1 + { lib, stdenv, fetchgit, pkg-config, zlib, pciutils, openssl, coreutils, acpica-tools, makeWrapper, gnugrep, gnused, file, buildEnv }: 2 2 3 3 let 4 - version = "4.19"; 4 + version = "4.20"; 5 5 6 6 commonMeta = with lib; { 7 7 description = "Various coreboot-related tools"; ··· 14 14 generic = { pname, path ? "util/${pname}", ... }@args: stdenv.mkDerivation (rec { 15 15 inherit pname version; 16 16 17 - src = fetchurl { 18 - url = "https://coreboot.org/releases/coreboot-${version}.tar.xz"; 19 - sha256 = "sha256-Zcyy9GU1uZbgBmobdvgcjPH/PiffhLP5fYrXs+fPCkM="; 17 + src = fetchgit { 18 + url = "https://review.coreboot.org/coreboot"; 19 + rev = "465fbbe93ee01b4576689a90b7ddbeec23cdace2"; 20 + sha256 = "sha256-DPaudCeK9SKu2eN1fad6a52ICs5d/GXCUFMdqAl65BE="; 20 21 }; 21 22 22 23 enableParallelBuilding = true;