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