f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
25 lines
632 B
Nix
25 lines
632 B
Nix
{ buildNpmPackage, fetchFromGitHub, lib }:
|
|
|
|
buildNpmPackage rec {
|
|
pname = "stylelint";
|
|
version = "16.7.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "stylelint";
|
|
repo = "stylelint";
|
|
rev = version;
|
|
hash = "sha256-teoEVkSLK3pdSY6Z9aq/4/V028mLufDrPt/Ff9iO64w=";
|
|
};
|
|
|
|
npmDepsHash = "sha256-daimn//rZhj7O/JCI2rdHn/H9o4yOYQcAL7Iu04RBlk=";
|
|
|
|
dontNpmBuild = true;
|
|
|
|
meta = with lib; {
|
|
description = "Mighty CSS linter that helps you avoid errors and enforce conventions";
|
|
mainProgram = "stylelint";
|
|
homepage = "https://stylelint.io";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|