seabios: use python3

wip/yesman
Frederik Rietdijk 3 years ago
parent 8a94b356db
commit 43675726a7
  1. 8
      pkgs/applications/virtualization/seabios/default.nix

@ -1,4 +1,4 @@
{ lib, stdenv, fetchurl, iasl, python }:
{ lib, stdenv, fetchurl, iasl, python3 }:
stdenv.mkDerivation rec {
@ -10,7 +10,11 @@ stdenv.mkDerivation rec {
sha256 = "1zc1brgafbbf5hmdr1qc1p859cabpz73l8sklq83xa4sn9icqw7b";
};
buildInputs = [ iasl python ];
nativeBuildInputs = [ python3 ];
buildInputs = [ iasl ];
strictDeps = true;
hardeningDisable = [ "pic" "stackprotector" "fortify" ];

Loading…
Cancel
Save