1{ lib, bundlerApp, bundlerUpdateScript }:
2
3bundlerApp {
4 pname = "compass";
5 gemdir = ./.;
6 exes = [ "compass" ];
7
8 passthru.updateScript = bundlerUpdateScript "compass";
9
10 meta = with lib; {
11 description = "Stylesheet Authoring Environment that makes your website design simpler to implement and easier to maintain";
12 homepage = "https://github.com/Compass/compass";
13 license = with licenses; mit;
14 maintainers = with maintainers; [ offline manveru nicknovitski ];
15 platforms = platforms.unix;
16 };
17}