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

bundlerEnv {
  name = "sass-3.4.22";

  inherit ruby;
  gemdir = ./.;

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