nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ lib
2, rustPlatform
3, fetchFromGitHub
4}:
5
6rustPlatform.buildRustPackage rec {
7 pname = "svls";
8 version = "0.1.27";
9
10 src = fetchFromGitHub {
11 owner = "dalance";
12 repo = "svls";
13 rev = "v${version}";
14 sha256 = "sha256-+/4D0pRZs1Gy6DJnsDZA8wWi1FKhr7gRS0oq1TyWpuE=";
15 };
16
17 cargoSha256 = "sha256-xkRlUXlkXQwvzIuhExf+tSSBi+8BZv58btvln05UI+k=";
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}