From 70e609cb334a8d9c55eeea171b255f89ce1c8aa6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=A9clairevoyant?= <848000+eclairevoyant@users.noreply.github.com> Date: Tue, 28 Oct 2025 21:55:56 -0400 Subject: [PATCH] windows.dlfcn: set update script --- pkgs/os-specific/windows/dlfcn/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/os-specific/windows/dlfcn/default.nix b/pkgs/os-specific/windows/dlfcn/default.nix index 69660ece925c..da3c1f527c74 100644 --- a/pkgs/os-specific/windows/dlfcn/default.nix +++ b/pkgs/os-specific/windows/dlfcn/default.nix @@ -3,6 +3,7 @@ lib, fetchFromGitHub, cmake, + nix-update-script, }: stdenv.mkDerivation rec { @@ -18,6 +19,8 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; + passthru.updateScript = nix-update-script { }; + meta = { homepage = "https://github.com/dlfcn-win32/dlfcn-win32"; description = "Set of functions that allows runtime dynamic library loading";