core/pkgs/common-updater/nix-update.nix
2024-05-13 22:24:10 +01:00

7 lines
149 B
Nix

{ lib, nix-update }:
{ attrPath ? null, extraArgs ? [ ] }:
[ "${lib.getExe nix-update}" ] ++ extraArgs
++ lib.optional (attrPath != null) attrPath