1{
2 lib,
3 bundlerApp,
4 bundlerUpdateScript,
5}:
6
7bundlerApp {
8 pname = "scss_lint";
9 gemdir = ./.;
10 exes = [ "scss-lint" ];
11
12 passthru.updateScript = bundlerUpdateScript "scss-lint";
13
14 meta = with lib; {
15 description = "Tool to help keep your SCSS files clean and readable";
16 homepage = "https://github.com/brigade/scss-lint";
17 license = licenses.mit;
18 maintainers = with maintainers; [
19 lovek323
20 nicknovitski
21 ];
22 platforms = platforms.unix;
23 };
24}