2023-05-26 07:54:44 +00:00
|
|
|
{ lib, buildNpmPackage, fetchFromGitHub }:
|
|
|
|
|
|
|
|
buildNpmPackage rec {
|
|
|
|
pname = "eslint_d";
|
2024-03-15 00:26:47 +00:00
|
|
|
version = "13.1.2";
|
2023-05-26 07:54:44 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mantoni";
|
|
|
|
repo = "eslint_d.js";
|
|
|
|
rev = "v${version}";
|
2024-03-15 00:26:47 +00:00
|
|
|
hash = "sha256-2G6I6Tx6LqgZ5EpVw4ux/JXv+Iky6Coenbh51JoFg7Q=";
|
2023-05-26 07:54:44 +00:00
|
|
|
};
|
|
|
|
|
2024-03-15 00:26:47 +00:00
|
|
|
npmDepsHash = "sha256-L6abWbSnxY6gGMXBjxobEg8cpl0p3lMST9T42QGk4yM=";
|
2023-05-26 07:54:44 +00:00
|
|
|
|
|
|
|
dontNpmBuild = true;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Makes eslint the fastest linter on the planet";
|
2023-11-03 17:27:15 +00:00
|
|
|
homepage = "https://github.com/mantoni/eslint_d.js";
|
2023-05-26 07:54:44 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ maintainers.ehllie ];
|
2023-08-16 18:55:53 +00:00
|
|
|
mainProgram = "eslint_d";
|
2023-05-26 07:54:44 +00:00
|
|
|
};
|
|
|
|
}
|