mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 01:33:10 +00:00
16 lines
371 B
Nix
16 lines
371 B
Nix
|
{ 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;
|
||
|
};
|
||
|
}
|