nix/pkgs/default.nix
iofq 79e54529eb
Some checks failed
/ check (push) Failing after 2m34s
add CI images to repo
2026-02-28 19:45:21 -06:00

12 lines
365 B
Nix

{ inputs, pkgs, ... }:
{
jj-vine = pkgs.rustPlatform.buildRustPackage {
name = "jj-vine";
src = inputs.jj-vine;
cargoHash = "sha256-OU3WVLXGsMwpfzDM4sXa4KTGps63MTDvDAE/HREzPS8=";
nativeBuildInputs = [ pkgs.jujutsu ];
doCheck = false;
};
nix-with-node = import ./nix-with-node { inherit pkgs; };
}
// import ./nvim { inherit inputs pkgs; }