From cdc56b459787c6f3c0556e1463d4b68fff1157bb Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 18 Feb 2024 17:39:42 +0000 Subject: [PATCH] fixed --- release.nix | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/release.nix b/release.nix index ff11caf..ada8038 100644 --- a/release.nix +++ b/release.nix @@ -1,14 +1,11 @@ { ... }: let - pkgs = (import {}); -in { - qemu-patched = pkgs.stdenv.mkDerivation { - name = "qemu"; - version = "v8.1.5"; - src = builtins.fetchGit { - url = "https://github.com/qemu/qemu"; - rev = "v8.1.5"; - }; - patches = [ "./IO-Exit.patch" ]; + pkgs = import nixpkgs { + inherit system; + overlays = [ + import ./overlay.nix; + ]; }; +in { + patched-qemu = pkgs.patched-qemu; }