2023-10-09 19:29:22 +00:00
|
|
|
{ buildNpmPackage, fetchFromGitHub, lib }:
|
|
|
|
|
|
|
|
buildNpmPackage rec {
|
|
|
|
pname = "stylelint";
|
2024-01-13 08:15:51 +00:00
|
|
|
version = "16.1.0";
|
2023-10-09 19:29:22 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "stylelint";
|
|
|
|
repo = "stylelint";
|
|
|
|
rev = version;
|
2024-01-13 08:15:51 +00:00
|
|
|
hash = "sha256-r6FSPMOvx0SI8u2qqk/ALmlSMCcCb3JlAHEawdGoERw=";
|
2023-10-09 19:29:22 +00:00
|
|
|
};
|
|
|
|
|
2024-01-13 08:15:51 +00:00
|
|
|
npmDepsHash = "sha256-SHZ7nB4//8IAc8ApmmHbeWi954Za6Ryv+bYuHnZ3Ef0=";
|
2023-10-09 19:29:22 +00:00
|
|
|
|
|
|
|
dontNpmBuild = true;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Mighty CSS linter that helps you avoid errors and enforce conventions";
|
|
|
|
homepage = "https://stylelint.io";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ ];
|
|
|
|
};
|
|
|
|
}
|