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