nixpkgs/pkgs/by-name/sv/svls/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
590 B
Nix
Raw Normal View History

2020-09-03 14:05:34 +00:00
{ lib
, rustPlatform
, fetchFromGitHub
}:
rustPlatform.buildRustPackage rec {
pname = "svls";
2024-06-03 16:41:04 +00:00
version = "0.2.12";
2020-09-03 14:05:34 +00:00
src = fetchFromGitHub {
owner = "dalance";
repo = "svls";
rev = "v${version}";
2024-06-03 16:41:04 +00:00
sha256 = "sha256-DuwH0qie8SctvOGntljOdTRMGKrNFPycdaFG3QZxihA=";
2020-09-03 14:05:34 +00:00
};
2024-06-03 16:41:04 +00:00
cargoHash = "sha256-vDpuIWB5pbhYrFgQ1ogALMJpZvy8ETZtneX1fjpjl+0=";
2020-09-03 14:05:34 +00:00
meta = with lib; {
description = "SystemVerilog language server";
mainProgram = "svls";
2020-09-03 14:05:34 +00:00
homepage = "https://github.com/dalance/svls";
license = licenses.mit;
maintainers = with maintainers; [ trepetti ];
};
}