We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbbb1af commit c5a21ebCopy full SHA for c5a21eb
flake.nix
@@ -44,13 +44,5 @@
44
default = self.devShells.${system}.emuhawk-latest;
45
}
46
) nixpkgsFor;
47
- overlays.default =
48
- final: prev:
49
- # filter derivations to only include `emuhawk` and `discohawk` ones (i.e. excluding `bizhawkAssemblies`)
50
- std.filterAttrs (name: pkg: (std.hasPrefix "emuhawk" name) || (std.hasPrefix "discohawk" name)) (
51
- # import `default.nix` with the overlayed package set
52
- # (i don't know the circumstances under which `final` wouldn't have a `system` attribute, but we may as well account for it)
53
- importDefaultDerivationsWith (final.system or "") final
54
- );
55
};
56
0 commit comments