summary refs log tree commit diff
path: root/pkgs/development/tools/sass/default.nix
blob: 8c76ac4e017b91699efcc0a4ea3b15ea9ce0f2a8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ lib, bundlerApp, bundlerUpdateScript }:

bundlerApp {
  pname = "sass";
  gemdir = ./.;
  exes = [ "sass" "sass-convert" "scss" ];

  passthru.updateScript = bundlerUpdateScript "sass";

  meta = with lib; {
    description = "Tools and Ruby libraries for the CSS3 extension languages: Sass and SCSS";
    homepage    = "https://sass-lang.com";
    license     = licenses.mit;
    maintainers = with maintainers; [ romildo manveru nicknovitski ];
    platforms   = platforms.unix;
  };
}