From d90863f36b18d401c5f93c625273a152bf458127 Mon Sep 17 00:00:00 2001 From: Adam Joseph Date: Tue, 24 Jan 2023 18:18:21 -0800 Subject: [PATCH] coreboot: use python3 --- src/coreboot/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/coreboot/default.nix b/src/coreboot/default.nix index ccf3f8b..e6f5af9 100644 --- a/src/coreboot/default.nix +++ b/src/coreboot/default.nix @@ -10,7 +10,7 @@ }: let version = "4.9"; - inherit (nixpkgsOnBuildForBuild) stdenv lib git python2 ncurses fetchgit; + inherit (nixpkgsOnBuildForBuild) stdenv lib git python3 ncurses fetchgit; src = fetchgit { url = "https://review.coreboot.org/coreboot"; branchName = "${version}"; @@ -71,7 +71,7 @@ stdenv.mkDerivation { nativeBuildInputs = [ git - python2 + python3 ncurses ] ++ coreboot-toolchain;