forked from mirrors/nixpkgs
sass: init at 3.4.22
This commit is contained in:
parent
522b4b4b4d
commit
7a9b98b5f5
2
pkgs/development/tools/sass/Gemfile
Normal file
2
pkgs/development/tools/sass/Gemfile
Normal file
|
@ -0,0 +1,2 @@
|
|||
source 'https://rubygems.org'
|
||||
gem 'sass'
|
13
pkgs/development/tools/sass/Gemfile.lock
Normal file
13
pkgs/development/tools/sass/Gemfile.lock
Normal file
|
@ -0,0 +1,13 @@
|
|||
GEM
|
||||
remote: https://rubygems.org/
|
||||
specs:
|
||||
sass (3.4.22)
|
||||
|
||||
PLATFORMS
|
||||
ruby
|
||||
|
||||
DEPENDENCIES
|
||||
sass
|
||||
|
||||
BUNDLED WITH
|
||||
1.11.2
|
18
pkgs/development/tools/sass/default.nix
Normal file
18
pkgs/development/tools/sass/default.nix
Normal 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;
|
||||
};
|
||||
}
|
10
pkgs/development/tools/sass/gemset.nix
Normal file
10
pkgs/development/tools/sass/gemset.nix
Normal file
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
sass = {
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "0dkj6v26fkg1g0majqswwmhxva7cd6p3psrhdlx93qal72dssywy";
|
||||
type = "gem";
|
||||
};
|
||||
version = "3.4.22";
|
||||
};
|
||||
}
|
|
@ -11158,6 +11158,8 @@ in
|
|||
|
||||
s3ql = callPackage ../tools/backup/s3ql { };
|
||||
|
||||
sass = callPackage ../development/tools/sass { };
|
||||
|
||||
sassc = callPackage ../development/tools/sassc { };
|
||||
|
||||
scanmem = callPackage ../tools/misc/scanmem { };
|
||||
|
|
Loading…
Reference in a new issue