From 5a30c3df2344ac5f9a0170be5360a97e45d2c516 Mon Sep 17 00:00:00 2001 From: Kira Bruneau Date: Wed, 24 May 2023 13:16:00 -0400 Subject: [PATCH] ukmm: add updateScript --- pkgs/tools/games/ukmm/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/tools/games/ukmm/default.nix b/pkgs/tools/games/ukmm/default.nix index 5e53f5003f5e..42cbed658ad0 100644 --- a/pkgs/tools/games/ukmm/default.nix +++ b/pkgs/tools/games/ukmm/default.nix @@ -7,6 +7,7 @@ , atk , glib , gtk3-x11 +, nix-update-script }: rustPlatform.buildRustPackage rec { @@ -66,6 +67,8 @@ rustPlatform.buildRustPackage rec { "--skip=bnp::test_convert" ]; + passthru.updateScript = nix-update-script { }; + meta = with lib; { description = "A new mod manager for The Legend of Zelda: Breath of the Wild"; homepage = "https://github.com/NiceneNerd/ukmm";