Skip to content

Commit 34ef8f2

Browse files
committed
Nix expr: fix derivation import in overlay output
1 parent d3bb171 commit 34ef8f2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

flake.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@
4949
# filter derivations to only include `emuhawk` and `discohawk` ones (i.e. excluding `bizhawkAssemblies`)
5050
std.filterAttrs (name: pkg: (std.hasPrefix "emuhawk" name) || (std.hasPrefix "discohawk" name)) (
5151
# 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
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
5454
);
5555
apps =
5656
let

0 commit comments

Comments
 (0)