11 rustPlatform.buildRustPackage rec {
12 pname = "pest-ide-tools";
14 cargoSha256 = "sha256-kFLVzsk2ML78zWoLVX/tPz+rwBPziXmfGAcVSA7GiTA=";
16 src = fetchFromGitHub {
17 owner = "pest-parser";
18 repo = "pest-ide-tools";
20 sha256 = "sha256-6051J3DQjI+Wp3iLn65GRmMnwOjGEtcWyXEKsT9k9fE=";
22 nativeBuildInputs = [ pkg-config ];
25 ] ++ lib.optionals stdenv.isDarwin [
26 darwin.apple_sdk.frameworks.Security
30 updateScript = nix-update-script { };
34 description = "IDE support for Pest, via the LSP.";
35 homepage = "https://pest.rs";
36 license = with licenses; [ mit asl20 ];
37 maintainers = with maintainers; [ nickhu ];
38 mainProgram = "pest-language-server";