3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/analysis/svlint/default.nix

26 lines
564 B
Nix
Raw Normal View History

2020-09-03 02:36:44 +01:00
{ lib
, rustPlatform
, fetchFromGitHub
}:
rustPlatform.buildRustPackage rec {
pname = "svlint";
2020-11-26 21:36:49 +00:00
version = "0.4.8";
2020-09-03 02:36:44 +01:00
src = fetchFromGitHub {
owner = "dalance";
repo = "svlint";
rev = "v${version}";
2020-11-26 21:36:49 +00:00
sha256 = "1anbanvaikj8g5jcmjd165krzvjdwj1cl8f3vm1nmy997x8vxihf";
2020-09-03 02:36:44 +01:00
};
2020-11-26 21:36:49 +00:00
cargoSha256 = "18xnqsrnf2gc9zny8ayzf1bah8mq1fy5k807cz039gqz36cvnma0";
2020-09-03 02:36:44 +01:00
meta = with lib; {
description = "SystemVerilog linter";
homepage = "https://github.com/dalance/svlint";
license = licenses.mit;
maintainers = with maintainers; [ trepetti ];
};
}