nix/pkgs/default.nix
iofq ff12f87628
Some checks failed
/ nvim-bundle (nvim-min) (push) Failing after 32s
/ check (push) Failing after 43s
let's try CI images again
2026-03-21 12:41:53 -05:00

13 lines
377 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 ./images/nix-with-node.nix { inherit pkgs; };
}
// import ./nvim { inherit inputs pkgs; }