2019-07-22 13:02:47 +01:00
|
|
|
{ lib, bundlerApp, bundlerUpdateScript }:
|
2018-11-27 08:25:44 +00:00
|
|
|
|
|
|
|
bundlerApp {
|
|
|
|
pname = "scss_lint";
|
|
|
|
gemdir = ./.;
|
|
|
|
exes = [ "scss-lint" ];
|
|
|
|
|
2019-07-22 13:02:47 +01:00
|
|
|
passthru.updateScript = bundlerUpdateScript "scss-lint";
|
|
|
|
|
2018-11-27 08:25:44 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "A tool to help keep your SCSS files clean and readable";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/brigade/scss-lint";
|
2018-11-27 08:25:44 +00:00
|
|
|
license = licenses.mit;
|
2019-07-22 13:02:47 +01:00
|
|
|
maintainers = with maintainers; [ lovek323 nicknovitski ];
|
2018-11-27 08:25:44 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|