clan-infra/pkgs/renovate/default.nix

14 lines
173 B
Nix
Raw Normal View History

2024-06-06 15:52:20 +00:00
{
pkgs,
system,
nodejs-18_x,
makeWrapper,
}:
2023-07-14 13:37:07 +00:00
let
nodePackages = import ./composition.nix {
inherit pkgs system;
nodejs = nodejs-18_x;
};
in
2023-08-08 12:07:04 +00:00
nodePackages