tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
sass: init at 3.4.22
José Romildo Malaquias
9 years ago
7a9b98b5
522b4b4b
+45
5 changed files
expand all
collapse all
unified
split
pkgs
development
tools
sass
Gemfile
Gemfile.lock
default.nix
gemset.nix
top-level
all-packages.nix
+2
pkgs/development/tools/sass/Gemfile
···
1
1
+
source 'https://rubygems.org'
2
2
+
gem 'sass'
+13
pkgs/development/tools/sass/Gemfile.lock
···
1
1
+
GEM
2
2
+
remote: https://rubygems.org/
3
3
+
specs:
4
4
+
sass (3.4.22)
5
5
+
6
6
+
PLATFORMS
7
7
+
ruby
8
8
+
9
9
+
DEPENDENCIES
10
10
+
sass
11
11
+
12
12
+
BUNDLED WITH
13
13
+
1.11.2
+18
pkgs/development/tools/sass/default.nix
···
1
1
+
{ lib, bundlerEnv, ruby }:
2
2
+
3
3
+
bundlerEnv {
4
4
+
name = "sass-3.4.22";
5
5
+
6
6
+
inherit ruby;
7
7
+
gemfile = ./Gemfile;
8
8
+
lockfile = ./Gemfile.lock;
9
9
+
gemset = ./gemset.nix;
10
10
+
11
11
+
meta = with lib; {
12
12
+
description = "Tools and Ruby libraries for the CSS3 extension languages: Sass and SCSS";
13
13
+
homepage = http://sass-lang.com/;
14
14
+
license = licenses.mit;
15
15
+
maintainers = [ maintainers.romildo ];
16
16
+
platforms = platforms.unix;
17
17
+
};
18
18
+
}
+10
pkgs/development/tools/sass/gemset.nix
···
1
1
+
{
2
2
+
sass = {
3
3
+
source = {
4
4
+
remotes = ["https://rubygems.org"];
5
5
+
sha256 = "0dkj6v26fkg1g0majqswwmhxva7cd6p3psrhdlx93qal72dssywy";
6
6
+
type = "gem";
7
7
+
};
8
8
+
version = "3.4.22";
9
9
+
};
10
10
+
}
+2
pkgs/top-level/all-packages.nix
···
11158
11158
11159
11159
s3ql = callPackage ../tools/backup/s3ql { };
11160
11160
11161
11161
+
sass = callPackage ../development/tools/sass { };
11162
11162
+
11161
11163
sassc = callPackage ../development/tools/sassc { };
11162
11164
11163
11165
scanmem = callPackage ../tools/misc/scanmem { };