6 lines
156 B
Nix
6 lines
156 B
Nix
{outputs, ...}: final: prev: let
|
|
inherit (final) stdenv;
|
|
inherit (stdenv.hostPlatform) system;
|
|
in {
|
|
juicity = outputs.packages."${system}".juicity;
|
|
}
|