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

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

26 lines
565 B
Nix
Raw Normal View History

2020-09-03 14:05:34 +00:00
{ lib
, rustPlatform
, fetchFromGitHub
}:
rustPlatform.buildRustPackage rec {
pname = "svls";
2022-02-13 08:46:34 +00:00
version = "0.2.0";
2020-09-03 14:05:34 +00:00
src = fetchFromGitHub {
owner = "dalance";
repo = "svls";
rev = "v${version}";
2022-02-13 08:46:34 +00:00
sha256 = "sha256-WZuFYiPV6HbBH9QT4h9FbnmkbFBadUaV0HujiQ0hu7I=";
2020-09-03 14:05:34 +00:00
};
2022-02-13 08:46:34 +00:00
cargoSha256 = "sha256-tafxN3ots1UTSv950NlwCs6TItMnKz5tn5vw7PTcARU=";
2020-09-03 14:05:34 +00:00
meta = with lib; {
description = "SystemVerilog language server";
homepage = "https://github.com/dalance/svls";
license = licenses.mit;
maintainers = with maintainers; [ trepetti ];
};
}