nixpkgs/pkgs/development/tools/sass/default.nix
2017-01-18 00:52:56 +01:00

17 lines
371 B
Nix

{ 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;
};
}