1{ stdenv, lib, bundlerEnv, ruby }:
2
3bundlerEnv {
4 name = "compass-1.0.3";
5
6 inherit ruby;
7 gemfile = ./Gemfile;
8 lockfile = ./Gemfile.lock;
9 gemset = ./gemset.nix;
10
11 meta = with lib; {
12 description = "Stylesheet Authoring Environment that makes your website design simpler to implement and easier to maintain.";
13 homepage = https://github.com/Compass/compass;
14 license = with licenses; mit;
15 maintainers = with maintainers; [ offline ];
16 platforms = platforms.unix;
17 };
18}