2019-07-22 14:02:47 +02:00
|
|
|
{ lib, bundlerApp, bundlerUpdateScript }:
|
2016-05-20 15:41:06 +02:00
|
|
|
|
2018-05-13 12:17:05 +02:00
|
|
|
bundlerApp {
|
|
|
|
pname = "sass";
|
2017-01-18 00:36:34 +01:00
|
|
|
gemdir = ./.;
|
2018-05-13 12:17:05 +02:00
|
|
|
exes = [ "sass" "sass-convert" "scss" ];
|
2016-05-20 15:41:06 +02:00
|
|
|
|
2019-07-22 14:02:47 +02:00
|
|
|
passthru.updateScript = bundlerUpdateScript "sass";
|
|
|
|
|
2016-05-20 15:41:06 +02:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Tools and Ruby libraries for the CSS3 extension languages: Sass and SCSS";
|
2018-05-13 12:17:05 +02:00
|
|
|
homepage = https://sass-lang.com;
|
2016-05-20 15:41:06 +02:00
|
|
|
license = licenses.mit;
|
2019-07-22 14:02:47 +02:00
|
|
|
maintainers = with maintainers; [ romildo manveru nicknovitski ];
|
2016-05-20 15:41:06 +02:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|