nixpkgs/pkgs/development/tools/scss-lint/default.nix

16 lines
371 B
Nix
Raw Normal View History

2018-11-27 08:25:44 +00:00
{ lib, bundlerApp }:
bundlerApp {
pname = "scss_lint";
gemdir = ./.;
exes = [ "scss-lint" ];
meta = with lib; {
description = "A tool to help keep your SCSS files clean and readable";
homepage = https://github.com/brigade/scss-lint;
license = licenses.mit;
maintainers = [ maintainers.lovek323 ];
platforms = platforms.unix;
};
}