e7ec2969af
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
24 lines
601 B
Nix
24 lines
601 B
Nix
{ buildNpmPackage, fetchFromGitHub, lib }:
|
|
|
|
buildNpmPackage rec {
|
|
pname = "stylelint";
|
|
version = "16.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "stylelint";
|
|
repo = "stylelint";
|
|
rev = version;
|
|
hash = "sha256-r6FSPMOvx0SI8u2qqk/ALmlSMCcCb3JlAHEawdGoERw=";
|
|
};
|
|
|
|
npmDepsHash = "sha256-SHZ7nB4//8IAc8ApmmHbeWi954Za6Ryv+bYuHnZ3Ef0=";
|
|
|
|
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; [ ];
|
|
};
|
|
}
|