2022-12-28 21:21:41 +00:00
|
|
|
{ lib, nix-update }:
|
2020-08-20 17:08:02 +00:00
|
|
|
|
2022-12-28 21:21:41 +00:00
|
|
|
{ attrPath ? null
|
|
|
|
, extraArgs ? [ ]
|
2022-12-02 08:20:57 +00:00
|
|
|
}:
|
2020-08-20 17:08:02 +00:00
|
|
|
|
2023-11-16 04:20:00 +00:00
|
|
|
[ "${lib.getExe nix-update}" ] ++ extraArgs ++ lib.optional (attrPath != null) attrPath
|