From 58baede83de9b38c8ad5c7a55365e35c0bf49b74 Mon Sep 17 00:00:00 2001 From: phaer Date: Fri, 10 Jan 2025 15:36:31 +0100 Subject: [PATCH] vfkit: use nix-update-script for automated updates --- pkgs/by-name/vf/vfkit/package.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/by-name/vf/vfkit/package.nix b/pkgs/by-name/vf/vfkit/package.nix index bba85ce7f198..1f53387dae78 100644 --- a/pkgs/by-name/vf/vfkit/package.nix +++ b/pkgs/by-name/vf/vfkit/package.nix @@ -4,6 +4,7 @@ buildGoModule, darwin, fetchFromGitHub, + nix-update-script, testers, vfkit, }: @@ -45,6 +46,8 @@ buildGoModule rec { version = testers.testVersion { package = vfkit; }; }; + passthru.updateScript = nix-update-script { }; + meta = { description = "Simple command line tool to start VMs through the macOS Virtualization framework"; homepage = "https://github.com/crc-org/vfkit";