~ruther/nixos-config

ref: bc2093fa143594b6a68262a3e7fabf18d8374798 nixos-config/pkgs/tree-sitter-vhdl.nix -rw-r--r-- 326 bytes
bc2093fa — Frantisek Bohacek feat: update waybar status 1 year, 5 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
{ tree-sitter, fetchFromGitHub }:

tree-sitter.buildGrammar {
  language = "tree-sitter-vhdl";
  version = "0.0.0";

  src = fetchFromGitHub {
    owner = "alemuller";
    repo = "tree-sitter-vhdl";
    rev = "a3b2d84990527c7f8f4ae219c332c00c33d2d8e5";
    hash = "sha256-CtlhSAKp90nXLI5g+vAd0dZZxjPTyMcNFvHL8DBY4j8=";
  };
}