From 1c5ade21cce3e00604254c47d6541ff1e3493910 Mon Sep 17 00:00:00 2001 From: Olli Helenius Date: Wed, 20 Sep 2023 20:33:00 +0300 Subject: [PATCH] fend: add updateScript --- pkgs/tools/misc/fend/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/tools/misc/fend/default.nix b/pkgs/tools/misc/fend/default.nix index 893094b3ba18..46277cbb8121 100644 --- a/pkgs/tools/misc/fend/default.nix +++ b/pkgs/tools/misc/fend/default.nix @@ -7,6 +7,7 @@ , installShellFiles , copyDesktopItems , makeDesktopItem +, nix-update-script }: rustPlatform.buildRustPackage rec { @@ -57,6 +58,8 @@ rustPlatform.buildRustPackage rec { }) ]; + passthru.updateScript = nix-update-script { }; + meta = with lib; { description = "Arbitrary-precision unit-aware calculator"; homepage = "https://github.com/printfn/fend";