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