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

26 lines
566 B
Nix
Raw Normal View History

2020-09-03 15:05:34 +01:00
{ lib
, rustPlatform
, fetchFromGitHub
}:
rustPlatform.buildRustPackage rec {
pname = "svls";
2021-03-13 14:44:31 +00:00
version = "0.1.27";
2020-09-03 15:05:34 +01:00
src = fetchFromGitHub {
owner = "dalance";
repo = "svls";
rev = "v${version}";
2021-03-13 14:44:31 +00:00
sha256 = "sha256-+/4D0pRZs1Gy6DJnsDZA8wWi1FKhr7gRS0oq1TyWpuE=";
2020-09-03 15:05:34 +01:00
};
2021-03-13 14:44:31 +00:00
cargoSha256 = "sha256-o6/L/4QcIei4X1pHYjV72hcEmTMp+pvJkwbb+niqWP8=";
2020-09-03 15:05:34 +01:00
meta = with lib; {
description = "SystemVerilog language server";
homepage = "https://github.com/dalance/svls";
license = licenses.mit;
maintainers = with maintainers; [ trepetti ];
};
}