test: pin nightly hash and test build

This commit is contained in:
Rasyidan Akbar F. 2026-03-22 15:33:08 +07:00
commit 7ff52678e1

View file

@ -9,6 +9,9 @@
ripgrep, ripgrep,
ffmpeg, ffmpeg,
git, git,
pinVersion ? "0.3.0",
pinRev ? "6ebb816e5611aaf1f3f7187ba8b10e985e899c75",
pinHash ? "sha256-JGjusff/jGjvCCdUtl9IErBTGmpIq6BVA5Gj8mwqVYg=",
}: }:
let let
@ -87,14 +90,14 @@ let
pythonImportsCheck = [ "acp" ]; pythonImportsCheck = [ "acp" ];
}; };
version = "0.3.0"; version = pinVersion;
rev = "6ebb816e5611aaf1f3f7187ba8b10e985e899c75"; rev = pinRev;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "NousResearch"; owner = "NousResearch";
repo = "hermes-agent"; repo = "hermes-agent";
inherit rev; inherit rev;
hash = "sha256-JGjusff/jGjvCCdUtl9IErBTGmpIq6BVA5Gj8mwqVYg="; hash = pinHash;
fetchSubmodules = true; fetchSubmodules = true;
}; };