2022-12-25 17:31:33 +01:00
|
|
|
{ lib, nix-update }:
|
2020-07-29 18:33:39 +02:00
|
|
|
|
2022-12-25 17:31:33 +01:00
|
|
|
{ attrPath ? null
|
|
|
|
, extraArgs ? [ ]
|
2022-11-23 23:21:27 +01:00
|
|
|
}:
|
2020-07-29 18:33:39 +02:00
|
|
|
|
2022-12-25 17:31:33 +01:00
|
|
|
[ "${nix-update}/bin/nix-update" ] ++ extraArgs ++ lib.optional (attrPath != null) attrPath
|