nix/pkgs/default.nix
iofq 58ae27d6d1
Some checks failed
/ check (push) Failing after 2m17s
init llm tooling
2026-02-26 21:58:46 -06:00

9 lines
242 B
Nix

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