18 lines
419 B
Nix
18 lines
419 B
Nix
|
{
|
||
|
description = "Tree-sitter for the Astro SSG";
|
||
|
|
||
|
inputs = {
|
||
|
flake-utils.url = github:numtide/flake-utils;
|
||
|
};
|
||
|
|
||
|
outputs = { self, nixpkgs, flake-utils }: flake-utils.lib.eachDefaultSystem (system: let
|
||
|
pkgs = nixpkgs.legacyPackages.${system};
|
||
|
in {
|
||
|
devShell = pkgs.mkShell {
|
||
|
buildInputs = with pkgs; [
|
||
|
tree-sitter
|
||
|
];
|
||
|
};
|
||
|
});
|
||
|
}
|