26 lines
568 B
Nix
26 lines
568 B
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "svls";
|
|
version = "0.1.18";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dalance";
|
|
repo = "svls";
|
|
rev = "v${version}";
|
|
sha256 = "08n2sp0yj7ql5aagxw94dn8bx2jkigs9zlylf5zkg673bh54829x";
|
|
};
|
|
|
|
cargoSha256 = "0k8x6kgxc2w7ldi456s4kg4v80b064drfa26zg5chcmcrr5zgmyv";
|
|
|
|
meta = with lib; {
|
|
description = "SystemVerilog language server";
|
|
homepage = "https://github.com/dalance/svls";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ trepetti ];
|
|
};
|
|
}
|