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
|