qemu-test/release.nix

12 lines
182 B
Nix
Raw Normal View History

2024-02-18 17:09:56 +00:00
{ ... }:
let
2024-02-18 17:39:42 +00:00
pkgs = import nixpkgs {
inherit system;
overlays = [
2024-02-18 17:40:19 +00:00
import ./overlay.nix
2024-02-18 17:39:42 +00:00
];
2024-02-18 17:22:18 +00:00
};
2024-02-18 17:39:42 +00:00
in {
patched-qemu = pkgs.patched-qemu;
2024-02-18 17:07:33 +00:00
}