mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
8 lines
154 B
Nix
8 lines
154 B
Nix
{ lib, nix-update }:
|
|
|
|
{ attrPath ? null
|
|
, extraArgs ? [ ]
|
|
}:
|
|
|
|
[ "${nix-update}/bin/nix-update" ] ++ extraArgs ++ lib.optional (attrPath != null) attrPath
|