nixpkgs/pkgs/development/tools/misc/svls/default.nix

26 lines
566 B
Nix
Raw Normal View History

2020-09-03 07:05:34 -07:00
{ lib
, rustPlatform
, fetchFromGitHub
}:
rustPlatform.buildRustPackage rec {
pname = "svls";
2021-02-06 12:44:31 -08:00
version = "0.1.25";
2020-09-03 07:05:34 -07:00
src = fetchFromGitHub {
owner = "dalance";
repo = "svls";
rev = "v${version}";
2021-02-06 12:44:31 -08:00
sha256 = "sha256-+o15rElJZXQu2Hq1/79ms9wqYimINrViSdQltSJlGN8=";
2020-09-03 07:05:34 -07:00
};
2021-02-06 12:44:31 -08:00
cargoSha256 = "sha256-zLDUQcnvjyr+QJLVq6ADGPee0Fd7HeDhPAkb05hYLcE=";
2020-09-03 07:05:34 -07:00
meta = with lib; {
description = "SystemVerilog language server";
homepage = "https://github.com/dalance/svls";
license = licenses.mit;
maintainers = with maintainers; [ trepetti ];
};
}