Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / tools / analysis / stylelint / default.nix
blobd2e583ecf91c0d3293dca4f552256046711b983c
1 { buildNpmPackage, fetchFromGitHub, lib }:
3 buildNpmPackage rec {
4   pname = "stylelint";
5   version = "15.10.3";
7   src = fetchFromGitHub {
8     owner = "stylelint";
9     repo = "stylelint";
10     rev = version;
11     hash = "sha256-k7Ngbd4Z3/JjCK6taynIiNCDTKfqGRrjfR0ePyRFY4w=";
12   };
14   npmDepsHash = "sha256-tVDhaDeUKzuyJU5ABSOeYgS56BDSJTfjBZdTsuL/7tA=";
16   dontNpmBuild = true;
18   meta = with lib; {
19     description = "Mighty CSS linter that helps you avoid errors and enforce conventions";
20     homepage = "https://stylelint.io";
21     license = licenses.mit;
22     maintainers = with maintainers; [ ];
23   };