qemu-test/release.nix

15 lines
321 B
Nix
Raw Normal View History

2024-02-18 17:09:56 +00:00
{ ... }:
let
2024-02-18 17:22:18 +00:00
pkgs = (import <nixpkgs>{});
2024-02-18 17:09:56 +00:00
in {
2024-02-18 17:22:18 +00:00
qemu-patched = pkgs.stdenv.mkDerivation {
name = "qemu";
2024-02-18 17:27:03 +00:00
version = "v8.1.5";
src = builtins.fetchGit {
url = "https://github.com/qemu/qemu";
rev = "v8.1.5";
};
2024-02-18 17:22:18 +00:00
patches = [ "./IO-Exit.patch" ];
};
2024-02-18 17:07:33 +00:00
}