nixpkgs/pkgs/by-name/st/stylelint/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
667 B
Nix
Raw Normal View History

{
buildNpmPackage,
fetchFromGitHub,
lib,
}:
let
2024-08-29 06:24:16 +00:00
version = "16.9.0";
in
buildNpmPackage {
pname = "stylelint";
inherit version;
src = fetchFromGitHub {
owner = "stylelint";
repo = "stylelint";
rev = version;
2024-08-29 06:24:16 +00:00
hash = "sha256-yMj6X3VI/CKw1VdRXV+7FVJQ6rdZ4E4v069wJZq3+dg=";
};
2024-08-29 06:24:16 +00:00
npmDepsHash = "sha256-Ylkx4FPsfEZTy1y2Be0RURHooAev0Z8ew3MJ2wOXjO4=";
dontNpmBuild = true;
meta = {
description = "Mighty CSS linter that helps you avoid errors and enforce conventions";
mainProgram = "stylelint";
homepage = "https://stylelint.io";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ momeemt ];
};
}