2023-07-15 17:15:38 +00:00
|
|
|
{ lib, buildNpmPackage, fetchFromGitHub }:
|
|
|
|
|
|
|
|
buildNpmPackage rec {
|
|
|
|
pname = "eslint_d";
|
2024-09-19 14:19:46 +00:00
|
|
|
version = "14.0.3";
|
2023-07-15 17:15:38 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mantoni";
|
|
|
|
repo = "eslint_d.js";
|
|
|
|
rev = "v${version}";
|
2024-09-19 14:19:46 +00:00
|
|
|
hash = "sha256-r0pb9qbWfyVUHuHrNhiYm+0zlF5WId3dH7QCubzZDts=";
|
2023-07-15 17:15:38 +00:00
|
|
|
};
|
|
|
|
|
2024-09-19 14:19:46 +00:00
|
|
|
npmDepsHash = "sha256-0Db18y7MUnnnr8v+bBOUhGBCsZcZ9OGtGqSVH7/wYQc=";
|
2023-07-15 17:15:38 +00:00
|
|
|
|
|
|
|
dontNpmBuild = true;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Makes eslint the fastest linter on the planet";
|
2023-11-16 04:20:00 +00:00
|
|
|
homepage = "https://github.com/mantoni/eslint_d.js";
|
2023-07-15 17:15:38 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ maintainers.ehllie ];
|
2023-08-22 20:05:09 +00:00
|
|
|
mainProgram = "eslint_d";
|
2023-07-15 17:15:38 +00:00
|
|
|
};
|
|
|
|
}
|