overlays: Use prev.stdenv.hostPlatform to get system instead of final
This commit is contained in:
parent
b54be83fd7
commit
eb1781b2ba
2 changed files with 3 additions and 4 deletions
|
|
@ -1,6 +1,5 @@
|
|||
{inputs, ...}: final: _prev: let
|
||||
inherit (final) stdenv;
|
||||
inherit (stdenv.hostPlatform) system;
|
||||
{inputs, ...}: _final: prev: let
|
||||
inherit (prev.stdenv.hostPlatform) system;
|
||||
in {
|
||||
dae = inputs.dae.packages."${system}".dae-unstable;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
{inputs, ...}: final: prev: let
|
||||
inherit (final.stdenv.hostPlatform) system;
|
||||
inherit (prev.stdenv.hostPlatform) system;
|
||||
in {
|
||||
nur =
|
||||
prev.nur
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue