init llm tooling
Some checks failed
/ check (push) Failing after 2m17s

This commit is contained in:
iofq 2026-02-26 21:58:32 -06:00
parent 802074f233
commit 58ae27d6d1
4 changed files with 119 additions and 12 deletions

View file

@ -1,9 +1,9 @@
{ inputs, ... }:
pkgs: {
{ inputs, pkgs, ... }:
{
jj-vine = pkgs.rustPlatform.buildRustPackage {
name = "jj-vine";
src = inputs.jj-vine;
cargoHash = "sha256-OU3WVLXGsMwpfzDM4sXa4KTGps63MTDvDAE/HREzPS8=";
nativeBuildInputs = [ pkgs.jj ];
nativeBuildInputs = [ pkgs.jujutsu ];
};
}