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