This commit is contained in:
Michael 2024-02-18 17:22:18 +00:00
parent f24c69812e
commit 21929c70e6

View File

@ -1,6 +1,10 @@
{ ... }:
let
pkgs = (import <nixpkgs> { overlay = [ (import ./overlay.nix) ]; });
pkgs = (import <nixpkgs>{});
in {
qemu = pkgs.patched-qemu;
qemu-patched = pkgs.stdenv.mkDerivation {
name = "qemu";
version = "8.1.5";
patches = [ "./IO-Exit.patch" ];
};
}