nix/pkgs/default.nix
iofq b0bc29a707
Some checks are pending
build / build (nvim) (push) Has started running
/ check (push) Successful in 3m50s
add CI images to repo
2026-02-28 00:57:53 -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; }