depot/third_party/nixpkgs/pkgs/development/tools/language-servers/svls/default.nix
Default email 587713944a Project import generated by Copybara.
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
2024-04-21 17:54:59 +02:00

26 lines
590 B
Nix

{ lib
, rustPlatform
, fetchFromGitHub
}:
rustPlatform.buildRustPackage rec {
pname = "svls";
version = "0.2.11";
src = fetchFromGitHub {
owner = "dalance";
repo = "svls";
rev = "v${version}";
sha256 = "sha256-pvvtJOwb9N7CzCXoLG19iuLQjABABaOUe6wKfYizgQc=";
};
cargoHash = "sha256-sMprdvBSfCIzoTHyUC447pyZWGgZkKa9t3A9BiGbQvY=";
meta = with lib; {
description = "SystemVerilog language server";
mainProgram = "svls";
homepage = "https://github.com/dalance/svls";
license = licenses.mit;
maintainers = with maintainers; [ trepetti ];
};
}