depot/pkgs/tools/misc/tremor-rs/ls.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

27 lines
685 B
Nix

{ lib
, rustPlatform
, fetchFromGitHub
}:
rustPlatform.buildRustPackage rec {
pname = "tremor-language-server";
version = "0.12.4";
src = fetchFromGitHub {
owner = "tremor-rs";
repo = "tremor-language-server";
rev = "v${version}";
sha256 = "sha256-odYhpb3FkbIF1dc2DSpz3Lg+r39lhDKml9KGmbqJAtA=";
};
nativeBuildInputs = [ rustPlatform.bindgenHook ];
cargoHash = "sha256-/RKwmslhMm30QxviVV7HthDHSmTmaGZn1hdt6bNF3d4=";
meta = with lib; {
description = "Tremor Language Server (Trill)";
homepage = "https://www.tremor.rs/docs/next/getting-started/tooling";
license = licenses.asl20;
maintainers = with maintainers; [ happysalada ];
};
}