nix/pkgs/default.nix
iofq e7b2d32fd2
Some checks failed
/ check (push) Successful in 4m27s
build / build (nvim) (push) Has been cancelled
add CI images to repo
2026-02-28 12:24:06 -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; }