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