1{ lib
2, rustPlatform
3, fetchFromGitHub
4}:
5
6rustPlatform.buildRustPackage rec {
7 pname = "svls";
8 version = "0.2.5";
9
10 src = fetchFromGitHub {
11 owner = "dalance";
12 repo = "svls";
13 rev = "v${version}";
14 sha256 = "sha256-SeVLQ05vPywSOnOEhJhQXYhdptmIhvYbbf9SX5eVzik=";
15 };
16
17 cargoSha256 = "sha256-jp84LqFuK6Du2mWmgvadD7p8n/zcLKAKBOMQiERTKBI=";
18
19 meta = with lib; {
20 description = "SystemVerilog language server";
21 homepage = "https://github.com/dalance/svls";
22 license = licenses.mit;
23 maintainers = with maintainers; [ trepetti ];
24 };
25}