This commit is contained in:
xenia 2023-12-11 20:05:41 +01:00
parent 6fdcaa89d3
commit 2877fe103f
2 changed files with 6 additions and 6 deletions

View File

@ -176,11 +176,11 @@
"nixpkgs": "nixpkgs_3" "nixpkgs": "nixpkgs_3"
}, },
"locked": { "locked": {
"lastModified": 1699742193, "lastModified": 1702320511,
"narHash": "sha256-1pc59vyEpFwtHYKsEGAwxL7/4wiTmLmzKO6j61wqOeo=", "narHash": "sha256-L3yWNm3a6yguaisCbjLbFCFUsSMwp/DG69LyDALUy+c=",
"ref": "refs/heads/main", "ref": "refs/heads/main",
"rev": "bb561d2e33d4d9f9d8171df2484ba6ae8e810b74", "rev": "3088bcfa224e6f259428054571529b09587af899",
"revCount": 3, "revCount": 4,
"type": "git", "type": "git",
"url": "https://githug.xyz/xenia/tree-sitters" "url": "https://githug.xyz/xenia/tree-sitters"
}, },

View File

@ -22,14 +22,14 @@
}; };
sitters = tree-sitters.packages.${sys}; sitters = tree-sitters.packages.${sys};
sitterlist = [ sitterlist = [
sitters.bash sitters.c sitters.python sitters.rust sitters.nix sitters.agda sitters.bash sitters.c sitters.python sitters.rust sitters.nix sitters.agda sitters.html
]; ];
kak-tree-bin = platform.buildRustPackage { kak-tree-bin = platform.buildRustPackage {
name = "kak-tree-bin"; name = "kak-tree-bin";
src = ./.; src = ./.;
cargoLock = { lockFile = ./Cargo.lock; }; cargoLock = { lockFile = ./Cargo.lock; };
buildFeatures = ["bash" "c" "python" "rust" "nix" "agda"]; buildFeatures = ["bash" "c" "python" "rust" "nix" "agda" "html"];
inherit sitterlist; inherit sitterlist;
preBuild = '' preBuild = ''
mkdir lib mkdir lib