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;