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

18 lines
488 B
Nix
Raw Normal View History

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