diff --git a/pkgs/by-name/ag/agent-safehouse/package.nix b/pkgs/by-name/ag/agent-safehouse/package.nix index ca43776cf6ec..4c3d91b3981d 100644 --- a/pkgs/by-name/ag/agent-safehouse/package.nix +++ b/pkgs/by-name/ag/agent-safehouse/package.nix @@ -2,18 +2,19 @@ lib, stdenvNoCC, fetchFromGitHub, + versionCheckHook, nix-update-script, }: stdenvNoCC.mkDerivation rec { pname = "safehouse"; - version = "0.10.1"; + version = "0.11.0"; src = fetchFromGitHub { owner = "eugene1g"; repo = "agent-safehouse"; rev = "v" + version; - hash = "sha256-Nm04UnyQ2mVLkIIEspDd2vbdcJxZ17MH07fW6PvokJI="; + hash = "sha256-2GWxh5J9qqudc2QM/CACXpqJLcNULKSfTAHBzR++UAE="; }; postPatch = "patchShebangs scripts bin"; @@ -37,6 +38,9 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; + doInstallCheck = true; + nativeInstallCheckInputs = [ versionCheckHook ]; + meta = { description = "Sandbox your local AI agents so they can read/write only what they need"; homepage = "https://github.com/eugene1g/agent-safehouse";