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
|
|
|
|
2022-12-28 21:21:41 +00:00
|
|
|
[ "${nix-update}/bin/nix-update" ] ++ extraArgs ++ lib.optional (attrPath != null) attrPath
|