From 47e3a9133326f81deb04b1bc101aaa68ed1879c7 Mon Sep 17 00:00:00 2001 From: Aidan Gauland Date: Sat, 24 Dec 2022 14:44:23 +1300 Subject: [PATCH] nushell: Add updater script --- pkgs/shells/nushell/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/shells/nushell/default.nix b/pkgs/shells/nushell/default.nix index 11c9aa67a2e..b64c7a93da1 100644 --- a/pkgs/shells/nushell/default.nix +++ b/pkgs/shells/nushell/default.nix @@ -21,6 +21,7 @@ , withExtraFeatures ? true , testers , nushell +, nix-update-script }: rustPlatform.buildRustPackage rec { @@ -99,5 +100,8 @@ rustPlatform.buildRustPackage rec { tests.version = testers.testVersion { package = nushell; }; + updateScript = nix-update-script { + attrPath = pname; + }; }; }