about summary refs log tree commit diff
path: root/nixpkgs/pkgs/common-updater/nix-update.nix
blob: 342b1677c6de8d5edfb4e7a4773b0e1bc90194a5 (plain) (blame)
1
2
3
4
5
6
7
{ lib, nix-update }:

{ attrPath ? null
, extraArgs ? [ ]
}:

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