summary refs log tree commit diff
path: root/pkgs/development/tools/compass/default.nix
blob: 2b0a5aaf90a020f6220ee4fa302e8545e2c6877e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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;
  };
}