Allow users to define where to find tree sitter libraries#10
Draft
diasbruno wants to merge 1 commit intodeath:masterfrom
Draft
Conversation
Contributor
Author
|
(define-grovel-syntax pkg-config-cflags (pkg &key optional) ...)Maybe this can make things easier to handle. |
Contributor
Author
|
I've found a "nice" way to work with nix. { nixpkgs ? import <nixpkgs> {} }:
let
inherit (nixpkgs) pkgs;
in pkgs.mkShell {
nativeBuildInputs = with pkgs; [pkg-config libffi tree-sitter sbcl];
buildInputs = with pkgs.lispPackages; [quicklisp];
# this will make libraries available for compilers
# on shell mode
LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath [ pkgs.tree-sitter ];
}This will work for some case, but if you compile something from source, |
7f334dc to
1282f1c
Compare
Contributor
Author
|
This works, but I think it can be cleaner. |
1282f1c to
e6bbbf1
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This helps in case packages are installed on non-standard places (e.g. using nix).
This is an example of how to glue things together: