tremor-language-server: init at 0.12.4
This commit is contained in:
parent
980e2c2ed2
commit
f05186306c
2 changed files with 31 additions and 0 deletions
29
pkgs/tools/misc/tremor-rs/ls.nix
Normal file
29
pkgs/tools/misc/tremor-rs/ls.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{ lib
|
||||
, rustPlatform
|
||||
, fetchFromGitHub
|
||||
, llvmPackages
|
||||
}:
|
||||
|
||||
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=";
|
||||
};
|
||||
|
||||
LIBCLANG_PATH = "${llvmPackages.libclang.lib}/lib";
|
||||
|
||||
cargoSha256 = "sha256-/RKwmslhMm30QxviVV7HthDHSmTmaGZn1hdt6bNF3d4=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Tremor Language Server (Trill)";
|
||||
homepage = "https://www.tremor.rs/docs/next/getting-started/tooling";
|
||||
license = licenses.asl20;
|
||||
platforms = platforms.x86_64;
|
||||
maintainers = with maintainers; [ happysalada ];
|
||||
};
|
||||
}
|
|
@ -12724,6 +12724,8 @@ with pkgs;
|
|||
openssl = openssl_1_1;
|
||||
};
|
||||
|
||||
tremor-language-server = callPackage ../tools/misc/tremor-rs/ls.nix { };
|
||||
|
||||
truecrack = callPackage ../tools/security/truecrack { };
|
||||
truecrack-cuda = truecrack.override { cudaSupport = true; };
|
||||
|
||||
|
|
Loading…
Reference in a new issue