Add compass, stylesheet authoring environment

This commit is contained in:
Jaka Hudoklin
2015-07-07 12:11:58 +02:00
parent 8f9534ccc3
commit acc995cf41
5 changed files with 135 additions and 1 deletions
@@ -0,0 +1,18 @@
{ stdenv, lib, bundlerEnv, ruby }:
bundlerEnv {
name = "compass-1.0.3";
inherit ruby;
gemfile = ./Gemfile;
lockfile = ./Gemfile.lock;
gemset = ./gemset.nix;
meta = with lib; {
description = "Stylesheet Authoring Environment that makes your website design simpler to implement and easier to maintain.";
homepage = https://github.com/Compass/compass;
license = with licenses; mit;
maintainers = with maintainers; [ offline ];
platforms = platforms.unix;
};
}