2015-07-07 10:47:12 +01:00
|
|
|
{ stdenv, lib, bundlerEnv, ruby }:
|
|
|
|
|
|
|
|
bundlerEnv {
|
|
|
|
name = "compass-1.0.3";
|
|
|
|
|
|
|
|
inherit ruby;
|
|
|
|
gemfile = ./Gemfile;
|
|
|
|
lockfile = ./Gemfile.lock;
|
|
|
|
gemset = ./gemset.nix;
|
|
|
|
|
|
|
|
meta = with lib; {
|
2016-02-27 17:24:00 +00:00
|
|
|
description = "Stylesheet Authoring Environment that makes your website design simpler to implement and easier to maintain";
|
2015-07-07 10:47:12 +01:00
|
|
|
homepage = https://github.com/Compass/compass;
|
|
|
|
license = with licenses; mit;
|
|
|
|
maintainers = with maintainers; [ offline ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|