From 5e9fc87458299705c0672985da0f707b8239a8cd Mon Sep 17 00:00:00 2001 From: Kenichi Kamiya Date: Fri, 8 Nov 2024 02:56:51 +0900 Subject: [PATCH] ox: add updateScript --- pkgs/by-name/ox/ox/package.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/by-name/ox/ox/package.nix b/pkgs/by-name/ox/ox/package.nix index 5890b1af9cd4..c09d94b7c35c 100644 --- a/pkgs/by-name/ox/ox/package.nix +++ b/pkgs/by-name/ox/ox/package.nix @@ -1,4 +1,4 @@ -{ lib, stdenv, fetchFromGitHub, rustPlatform, testers, ox }: +{ lib, stdenv, fetchFromGitHub, rustPlatform, testers, nix-update-script, ox }: rustPlatform.buildRustPackage rec { pname = "ox"; @@ -17,6 +17,8 @@ rustPlatform.buildRustPackage rec { tests.version = testers.testVersion { package = ox; }; + + updateScript = nix-update-script { }; }; meta = with lib; {