biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / rslint / default.nix
blob1dd66050d2d79830ab6d4326e104480e57e3a503
1 { lib, rustPlatform, fetchFromGitHub }:
3 rustPlatform.buildRustPackage rec {
4   pname = "rslint";
5   version = "0.3.2";
7   src = fetchFromGitHub {
8     owner = "rslint";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-3DEwi+bhqwP8aMpZYl07GZbe7IecraB3m54lZ5LViVc=";
12   };
14   cargoSha256 = "sha256-bqF5v52uxbvmVmphXAmcWlCI6nbQzZemCxlTcqhRDTY=";
16   cargoBuildFlags = [
17     "-p" "rslint_cli"
18     "-p" "rslint_lsp"
19   ];
21   meta = with lib; {
22     description = "A fast, customizable, and easy to use JavaScript and TypeScript linter";
23     homepage = "https://rslint.org";
24     license = licenses.mit;
25     maintainers = with maintainers; [ figsoda ];
26   };