14 lines
294 B
Nix
14 lines
294 B
Nix
{ inputs, ... }:
|
|
_final: prev:
|
|
let
|
|
inherit (prev.stdenv.hostPlatform) system;
|
|
in
|
|
{
|
|
nur = prev.nur // {
|
|
repos = prev.nur.repos // {
|
|
ataraxiasjel = prev.nur.repos.ataraxiasjel // {
|
|
inherit (inputs.nur-ataraxiasjel.packages.${system}) waydroid-script;
|
|
};
|
|
};
|
|
};
|
|
}
|