core/pkgs/common-updater/nix-update.nix

7 lines
149 B
Nix
Raw Normal View History

2024-05-02 00:46:19 +00:00
{ lib, nix-update }:
2024-05-13 21:24:10 +00:00
{ attrPath ? null, extraArgs ? [ ] }:
2024-05-02 00:46:19 +00:00
2024-05-13 21:24:10 +00:00
[ "${lib.getExe nix-update}" ] ++ extraArgs
++ lib.optional (attrPath != null) attrPath