Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, bundlerApp, bundlerUpdateScript }:
2
3bundlerApp {
4 pname = "sass";
5 gemdir = ./.;
6 exes = [ "sass" "sass-convert" "scss" ];
7
8 passthru.updateScript = bundlerUpdateScript "sass";
9
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 };
17}