1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/tools/sass/default.nix

17 lines
371 B
Nix
Raw Normal View History

2016-05-20 14:41:06 +01:00
{ lib, bundlerEnv, ruby }:
bundlerEnv {
name = "sass-3.4.22";
inherit ruby;
2017-01-17 23:36:34 +00:00
gemdir = ./.;
2016-05-20 14:41:06 +01:00
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;
};
}