summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2024-02-02 21:30:30 -0500
committerseth <[email protected]>2024-02-03 21:17:09 -0500
commit554532d06bc14d9a88d2c32739f2a84c1ad00626 (patch)
treef1871d19a88dc75feb5e622866fe5ca7df9b271d /flake.nix
parent493bce88a36589a2c7d4eee194c7546c54aa3f03 (diff)
use tree-sitter-just from upstream nixpkgs
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix20
1 files changed, 2 insertions, 18 deletions
diff --git a/flake.nix b/flake.nix
index 843d8d2..263a1a2 100644
--- a/flake.nix
+++ b/flake.nix
@@ -1,20 +1,12 @@
{
description = "getchoo's neovim config";
- inputs = {
- nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.1.0.tar.gz";
-
- tree-sitter-just = {
- url = "github:IndianBoy42/tree-sitter-just/27b2d8a07e409025cd4160e56c1c1af939a2c556";
- flake = false;
- };
- };
+ inputs.nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.1.0.tar.gz";
outputs = {
self,
nixpkgs,
- ...
- } @ inputs: let
+ }: let
systems = [
"x86_64-linux"
"aarch64-linux"
@@ -49,14 +41,6 @@
packages = forAllSystems (pkgs: rec {
getchvim = import ./neovim.nix self pkgs;
-
- tree-sitter-just = pkgs.tree-sitter.buildGrammar {
- language = "just";
- version = builtins.substring 0 8 inputs.tree-sitter-just.lastModifiedDate;
-
- src = inputs.tree-sitter-just;
- };
-
default = getchvim;
});
};