7 lines
157 B
Nix
7 lines
157 B
Nix
|
|
{outputs, ...}: final: prev: let
|
||
|
|
inherit (final) stdenv;
|
||
|
|
inherit (stdenv.hostPlatform) system;
|
||
|
|
in {
|
||
|
|
spotify = outputs.packages."${system}".spotifyx;
|
||
|
|
}
|