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

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

26 lines
631 B
Nix
Raw Normal View History

{ lib, buildNpmPackage, fetchFromGitHub }:
buildNpmPackage rec {
pname = "eslint_d";
2024-03-15 00:26:47 +00:00
version = "13.1.2";
src = fetchFromGitHub {
owner = "mantoni";
repo = "eslint_d.js";
rev = "v${version}";
2024-03-15 00:26:47 +00:00
hash = "sha256-2G6I6Tx6LqgZ5EpVw4ux/JXv+Iky6Coenbh51JoFg7Q=";
};
2024-03-15 00:26:47 +00:00
npmDepsHash = "sha256-L6abWbSnxY6gGMXBjxobEg8cpl0p3lMST9T42QGk4yM=";
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";
license = licenses.mit;
maintainers = [ maintainers.ehllie ];
2023-08-16 18:55:53 +00:00
mainProgram = "eslint_d";
};
}