nixpkgs/pkgs/development/tools/sass/default.nix

18 lines
490 B
Nix
Raw Normal View History

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