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 d3bb171 commit 34ef8f2Copy full SHA for 34ef8f2
flake.nix
@@ -49,8 +49,8 @@
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 `prev` wouldn't have a `system` attribute, but we may as well account for it)
53
- importDefaultDerivationsWith (prev.system or "") prev
+ # (i don't know the circumstances under which `final` wouldn't have a `system` attribute, but we may as well account for it)
+ importDefaultDerivationsWith (final.system or "") final
54
);
55
apps =
56
let
0 commit comments