feat(pkgs): add three rust packages
`vim-fmi` -> `vim-fmi-cli` `fennel-language-server` `parinfer-rust`
This commit is contained in:
parent
d323092582
commit
cf6af515e0
4 changed files with 68 additions and 5 deletions
28
pkgs/fennel-language-server/default.nix
Normal file
28
pkgs/fennel-language-server/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{ lib, fetchFromGitHub, rustPlatform, openssl, pkg-config, libxkbcommon }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "fennel-language-server";
|
||||
version = "d0c65db2ef43fd56390db14c422983040b41dd9c";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "rydesun";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "sha256-KU2MPmgHOS/WesBzCmEoHHXHoDWCyqjy49tmMmZw5BQ=";
|
||||
};
|
||||
|
||||
cargoSha256 = "sha256-6q1VXgj0f8jTrVxhgYixow0WxJzx+yKHQPqOGmzTzLo=";
|
||||
|
||||
nativeBuildInputs = [ ];
|
||||
|
||||
buildInputs = [ ];
|
||||
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Fennel language server protocol (LSP) support.";
|
||||
homepage = "https://github.com/rydesun/fennel-language-server";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ reo101 ];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue