biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / misc / tremor-rs / ls.nix
bloba379c9294d88780dc6dc63f48f42adc182338e83
1 { lib
2 , rustPlatform
3 , fetchFromGitHub
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "tremor-language-server";
8   version = "0.12.4";
10   src = fetchFromGitHub {
11     owner = "tremor-rs";
12     repo = "tremor-language-server";
13     rev = "v${version}";
14     sha256 = "sha256-odYhpb3FkbIF1dc2DSpz3Lg+r39lhDKml9KGmbqJAtA=";
15   };
17   nativeBuildInputs = [ rustPlatform.bindgenHook ];
19   cargoHash = "sha256-/RKwmslhMm30QxviVV7HthDHSmTmaGZn1hdt6bNF3d4=";
21   meta = with lib; {
22     description = "Tremor Language Server (Trill)";
23     homepage = "https://www.tremor.rs/docs/next/getting-started/tooling";
24     license = licenses.asl20;
25     maintainers = with maintainers; [ happysalada ];
26   };