diff options
author | figsoda | 2022-12-25 17:11:14 -0500 |
---|---|---|
committer | figsoda | 2022-12-26 12:39:21 -0500 |
commit | a211d942913d9c4071771f3ffb4c9e1000043d6a (patch) | |
tree | 4a01b857b5d55f02d857b977e4f35b9f4fdf1029 /pkgs/shells/nushell/default.nix | |
parent | 6621358e6d439e38fae5101d6c7e133029affec2 (diff) |
treewide: remove attrPath from nix-update-script calls
after https://github.com/Mic92/nix-update/pull/120 and https://github.com/NixOS/nixpkgs/pull/207703, `attrPath` can now be omitted when using `nix-update-script`
Diffstat (limited to 'pkgs/shells/nushell/default.nix')
-rw-r--r-- | pkgs/shells/nushell/default.nix | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/pkgs/shells/nushell/default.nix b/pkgs/shells/nushell/default.nix index 1885a40d4c4d..4e510d47dea6 100644 --- a/pkgs/shells/nushell/default.nix +++ b/pkgs/shells/nushell/default.nix @@ -90,8 +90,6 @@ rustPlatform.buildRustPackage rec { tests.version = testers.testVersion { package = nushell; }; - updateScript = nix-update-script { - attrPath = pname; - }; + updateScript = nix-update-script { }; }; } |