nix-update-script: nixfmt-rfc-style
This commit is contained in:
@@ -1,7 +1,11 @@
|
|||||||
{ lib, nix-update }:
|
{
|
||||||
|
lib,
|
||||||
{ attrPath ? null
|
nix-update,
|
||||||
, extraArgs ? [ ]
|
|
||||||
}:
|
}:
|
||||||
|
|
||||||
[ "${lib.getExe nix-update}" ] ++ extraArgs ++ lib.optional (attrPath != null) attrPath
|
{
|
||||||
|
attrPath ? null,
|
||||||
|
extraArgs ? [ ],
|
||||||
|
}:
|
||||||
|
|
||||||
|
[ "${lib.getExe nix-update}" ] ++ extraArgs ++ lib.optionals (attrPath != null) [ attrPath ]
|
||||||
|
|||||||
Reference in New Issue
Block a user