-
Notifications
You must be signed in to change notification settings - Fork 74
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Simplified nix flake for build, dev shell, and cached build #74
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,4 @@ dist | |
lsp-ai.log | ||
.vsix | ||
lsp-ai-chat.md | ||
result |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
{ | ||
description = "LSP-AI: Open-source language server for AI-powered functionality"; | ||
|
||
inputs = { | ||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; | ||
flake-utils.url = "github:numtide/flake-utils"; | ||
rust-overlay.url = "github:oxalica/rust-overlay"; | ||
}; | ||
|
||
outputs = | ||
{ | ||
self, | ||
nixpkgs, | ||
flake-utils, | ||
rust-overlay, | ||
}: | ||
flake-utils.lib.eachDefaultSystem ( | ||
system: | ||
let | ||
overlays = [ (import rust-overlay) ]; | ||
pkgs = import nixpkgs { | ||
inherit system overlays; | ||
config.allowUnfree = true; | ||
}; | ||
rustVersion = pkgs.rust-bin.stable.latest.default; | ||
|
||
commonBuildInputs = with pkgs; [ | ||
openssl | ||
zlib | ||
]; | ||
|
||
commonNativeBuildInputs = with pkgs; [ | ||
pkg-config | ||
cmake | ||
rustVersion | ||
perl | ||
]; | ||
|
||
in | ||
rec { | ||
packages = rec { | ||
default = pkgs.rustPlatform.buildRustPackage { | ||
pname = "lsp-ai"; | ||
version = "0.7.0"; | ||
|
||
src = ./.; | ||
|
||
cargoLock = { | ||
lockFile = ./Cargo.lock; | ||
allowBuiltinFetchGit = true; | ||
}; | ||
|
||
nativeBuildInputs = commonNativeBuildInputs; | ||
buildInputs = commonBuildInputs; | ||
|
||
doCheck = false; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
|
||
meta = with pkgs.lib; { | ||
description = "An open-source language server that serves as a backend for AI-powered functionality"; | ||
homepage = "https://github.com/SilasMarvin/lsp-ai"; | ||
license = licenses.mit; | ||
maintainers = | ||
[ | ||
# Add maintainers here | ||
]; | ||
}; | ||
}; | ||
|
||
devPackage = default.overrideAttrs (oldAttrs: { | ||
name = "lsp-ai-dev"; | ||
|
||
buildPhase = '' | ||
export CARGO_HOME="/tmp/.cargo" | ||
export RUSTUP_HOME="/tmp/.rustup" | ||
cargo build | ||
''; | ||
|
||
installPhase = '' | ||
mkdir -p $out/bin | ||
cp target/debug/lsp-ai $out/bin/ | ||
''; | ||
}); | ||
}; | ||
|
||
devShells.default = pkgs.mkShell { | ||
inputsFrom = [ packages.default ]; | ||
packages = with pkgs; [ | ||
rust-analyzer | ||
clippy | ||
rustfmt | ||
]; | ||
|
||
shellHook = '' | ||
export CARGO_HOME="/tmp/.cargo" | ||
export RUSTUP_HOME="/tmp/.rustup" | ||
''; | ||
}; | ||
} | ||
); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is the
main
package. Essentially when runningnix build
locally, thedefault
entry is the starting point. The devPackage and devShells are more of conveniences for being dropped into a shell with all needed dependencies, but still track a cached build at/tmp/.cargo
so during the dev cycle, one can runcargo
commands as they please with the necessary caches.