nix/pkgs/default.nix
iofq aa9e5a90c6
Some checks failed
/ check (push) Successful in 3m59s
build / build (nvim) (push) Failing after 3h0m0s
add CI images to repo
2026-02-28 01:17:26 -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; }