nixpkgs/pkgs/development/tools/rslint/default.nix

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

28 lines
662 B
Nix
Raw Normal View History

2021-10-03 18:58:45 +02:00
{ lib, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
pname = "rslint";
2022-03-21 18:38:10 +01:00
version = "0.3.2";
2021-10-03 18:58:45 +02:00
src = fetchFromGitHub {
owner = "rslint";
repo = pname;
rev = "v${version}";
2022-03-21 18:38:10 +01:00
sha256 = "sha256-3DEwi+bhqwP8aMpZYl07GZbe7IecraB3m54lZ5LViVc=";
2021-10-03 18:58:45 +02:00
};
2022-03-21 18:38:10 +01:00
cargoSha256 = "sha256-bqF5v52uxbvmVmphXAmcWlCI6nbQzZemCxlTcqhRDTY=";
2021-10-03 18:58:45 +02:00
cargoBuildFlags = [
"-p" "rslint_cli"
"-p" "rslint_lsp"
];
meta = with lib; {
description = "A fast, customizable, and easy to use JavaScript and TypeScript linter";
homepage = "https://rslint.org";
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
};
}