biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / sass / default.nix
blob8c76ac4e017b91699efcc0a4ea3b15ea9ce0f2a8
1 { lib, bundlerApp, bundlerUpdateScript }:
3 bundlerApp {
4   pname = "sass";
5   gemdir = ./.;
6   exes = [ "sass" "sass-convert" "scss" ];
8   passthru.updateScript = bundlerUpdateScript "sass";
10   meta = with lib; {
11     description = "Tools and Ruby libraries for the CSS3 extension languages: Sass and SCSS";
12     homepage    = "https://sass-lang.com";
13     license     = licenses.mit;
14     maintainers = with maintainers; [ romildo manveru nicknovitski ];
15     platforms   = platforms.unix;
16   };