Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / tools / eslint_d / default.nix
blob1a59a96b08bf896f568d87c812154fb21ad63b13
1 { lib, buildNpmPackage, fetchFromGitHub }:
3 buildNpmPackage rec {
4   pname = "eslint_d";
5   version = "13.0.0";
7   src = fetchFromGitHub {
8     owner = "mantoni";
9     repo = "eslint_d.js";
10     rev = "v${version}";
11     hash = "sha256-tlpuJ/p+U7DuzEmy5ulY3advKN+1ID9LDjUl8fDANVs=";
12   };
14   npmDepsHash = "sha256-MiuCupnzMUjwWh47SLnMRmtHBMbXdyjEZwgvaZz4JN0=";
16   dontNpmBuild = true;
18   meta = with lib; {
19     description = "Makes eslint the fastest linter on the planet";
20     homepage = "https://github.com/mantoni/eslint_d.js";
21     license = licenses.mit;
22     maintainers = [ maintainers.ehllie ];
23     mainProgram = "eslint_d";
24   };