aboutsummaryrefslogtreecommitdiff
path: root/modules/kakoune/kak-tree-sitter.nix
blob: 6be9a76c2a0e7dfe6e6ee146b6aee5769642d6e3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ lib, pkgs }:
with pkgs;
rustPlatform.buildRustPackage rec {
  pname = "kak-tree-sitter";
  version = "3.0.0-local.2";

  src = fetchFromSourcehut {
    owner = "~hadronized";
    repo = "kak-tree-sitter";
    rev = "e4e1d270129c985cbf2a39e23ef1e41323bfc84e"; # 24 May 2026
    hash = "sha256-+bu5Z6bntJYQ3x/NdBiMeZ4mnhLqFoF1jcUh422FMPQ=";
  };

  cargoHash = "sha256-ztVBBeLU1AByDz3yVDMZ102bDG6JfL/6IoJlcqRmCmU=";

  meta = {
    mainProgram = "kak-tree-sitter";
  };
}