sass: init at 3.4.22

This commit is contained in:
José Romildo Malaquias
2016-05-20 10:41:06 -03:00
parent 522b4b4b4d
commit 7a9b98b5f5
5 changed files with 45 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
{ lib, bundlerEnv, ruby }:
bundlerEnv {
name = "sass-3.4.22";
inherit ruby;
gemfile = ./Gemfile;
lockfile = ./Gemfile.lock;
gemset = ./gemset.nix;
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;
};
}