Zesty - a pin-accurate, cycle-accurate NES emulator written in Zig
1{
2 inputs.nixpkgs.url = "https://channels.nixos.org/nixos-unstable/nixexprs.tar.xz";
3
4 outputs = { nixpkgs, ... }: let
5 forAllSystems = f: with nixpkgs; lib.genAttrs lib.systems.flakeExposed (s: f legacyPackages.${s});
6 in {
7 devShells = forAllSystems (pkgs: {
8 default = pkgs.mkShell {
9 packages = with pkgs; [ zig_0_15 zls_0_15 ];
10 };
11 });
12 };
13}