lol

sass: init at 3.4.22

+45
+2
pkgs/development/tools/sass/Gemfile
··· 1 + source 'https://rubygems.org' 2 + gem 'sass'
+13
pkgs/development/tools/sass/Gemfile.lock
··· 1 + GEM 2 + remote: https://rubygems.org/ 3 + specs: 4 + sass (3.4.22) 5 + 6 + PLATFORMS 7 + ruby 8 + 9 + DEPENDENCIES 10 + sass 11 + 12 + BUNDLED WITH 13 + 1.11.2
+18
pkgs/development/tools/sass/default.nix
··· 1 + { lib, bundlerEnv, ruby }: 2 + 3 + bundlerEnv { 4 + name = "sass-3.4.22"; 5 + 6 + inherit ruby; 7 + gemfile = ./Gemfile; 8 + lockfile = ./Gemfile.lock; 9 + gemset = ./gemset.nix; 10 + 11 + meta = with lib; { 12 + description = "Tools and Ruby libraries for the CSS3 extension languages: Sass and SCSS"; 13 + homepage = http://sass-lang.com/; 14 + license = licenses.mit; 15 + maintainers = [ maintainers.romildo ]; 16 + platforms = platforms.unix; 17 + }; 18 + }
+10
pkgs/development/tools/sass/gemset.nix
··· 1 + { 2 + sass = { 3 + source = { 4 + remotes = ["https://rubygems.org"]; 5 + sha256 = "0dkj6v26fkg1g0majqswwmhxva7cd6p3psrhdlx93qal72dssywy"; 6 + type = "gem"; 7 + }; 8 + version = "3.4.22"; 9 + }; 10 + }
+2
pkgs/top-level/all-packages.nix
··· 11158 11158 11159 11159 s3ql = callPackage ../tools/backup/s3ql { }; 11160 11160 11161 + sass = callPackage ../development/tools/sass { }; 11162 + 11161 11163 sassc = callPackage ../development/tools/sassc { }; 11162 11164 11163 11165 scanmem = callPackage ../tools/misc/scanmem { };