5ca88bfbb9
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
27 lines
658 B
Nix
27 lines
658 B
Nix
{ lib, rustPlatform, fetchFromGitHub }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "rslint";
|
|
version = "0.3.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rslint";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-3DEwi+bhqwP8aMpZYl07GZbe7IecraB3m54lZ5LViVc=";
|
|
};
|
|
|
|
cargoHash = "sha256-bqF5v52uxbvmVmphXAmcWlCI6nbQzZemCxlTcqhRDTY=";
|
|
|
|
cargoBuildFlags = [
|
|
"-p" "rslint_cli"
|
|
"-p" "rslint_lsp"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Fast, customizable, and easy to use JavaScript and TypeScript linter";
|
|
homepage = "https://rslint.org";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ figsoda ];
|
|
};
|
|
}
|