about summary refs log tree commit diff
path: root/pkgs/development/tools/sass
diff options
context:
space:
mode:
authorJosé Romildo Malaquias <malaquias@gmail.com>2016-05-20 10:41:06 -0300
committerJosé Romildo Malaquias <malaquias@gmail.com>2016-05-20 10:41:06 -0300
commit7a9b98b5f5b3af40b7aa19829447ba2540fdeffa (patch)
tree64345ac1042cf5442cc45418f51f3ddb815fc20c /pkgs/development/tools/sass
parent522b4b4b4db4dd833c4796f2c48405e719adcefb (diff)
downloadnixlib-7a9b98b5f5b3af40b7aa19829447ba2540fdeffa.tar
nixlib-7a9b98b5f5b3af40b7aa19829447ba2540fdeffa.tar.gz
nixlib-7a9b98b5f5b3af40b7aa19829447ba2540fdeffa.tar.bz2
nixlib-7a9b98b5f5b3af40b7aa19829447ba2540fdeffa.tar.lz
nixlib-7a9b98b5f5b3af40b7aa19829447ba2540fdeffa.tar.xz
nixlib-7a9b98b5f5b3af40b7aa19829447ba2540fdeffa.tar.zst
nixlib-7a9b98b5f5b3af40b7aa19829447ba2540fdeffa.zip
sass: init at 3.4.22
Diffstat (limited to 'pkgs/development/tools/sass')
-rw-r--r--pkgs/development/tools/sass/Gemfile2
-rw-r--r--pkgs/development/tools/sass/Gemfile.lock13
-rw-r--r--pkgs/development/tools/sass/default.nix18
-rw-r--r--pkgs/development/tools/sass/gemset.nix10
4 files changed, 43 insertions, 0 deletions
diff --git a/pkgs/development/tools/sass/Gemfile b/pkgs/development/tools/sass/Gemfile
new file mode 100644
index 000000000000..e46ea120f725
--- /dev/null
+++ b/pkgs/development/tools/sass/Gemfile
@@ -0,0 +1,2 @@
+source 'https://rubygems.org'
+gem 'sass'
diff --git a/pkgs/development/tools/sass/Gemfile.lock b/pkgs/development/tools/sass/Gemfile.lock
new file mode 100644
index 000000000000..82dcddb9ece1
--- /dev/null
+++ b/pkgs/development/tools/sass/Gemfile.lock
@@ -0,0 +1,13 @@
+GEM
+  remote: https://rubygems.org/
+  specs:
+    sass (3.4.22)
+
+PLATFORMS
+  ruby
+
+DEPENDENCIES
+  sass
+
+BUNDLED WITH
+   1.11.2
diff --git a/pkgs/development/tools/sass/default.nix b/pkgs/development/tools/sass/default.nix
new file mode 100644
index 000000000000..a291ca2de5d0
--- /dev/null
+++ b/pkgs/development/tools/sass/default.nix
@@ -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;
+  };
+}
diff --git a/pkgs/development/tools/sass/gemset.nix b/pkgs/development/tools/sass/gemset.nix
new file mode 100644
index 000000000000..31e4e6ab6d37
--- /dev/null
+++ b/pkgs/development/tools/sass/gemset.nix
@@ -0,0 +1,10 @@
+{
+  sass = {
+    source = {
+      remotes = ["https://rubygems.org"];
+      sha256 = "0dkj6v26fkg1g0majqswwmhxva7cd6p3psrhdlx93qal72dssywy";
+      type = "gem";
+    };
+    version = "3.4.22";
+  };
+}
\ No newline at end of file