about summary refs log tree commit diff
path: root/pkgs/development/tools/compass/default.nix
blob: 8b8752d1c0d8c26468e36e80ca5f67283e779538 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, bundlerEnv, bundlerUpdateScript, ruby }:

bundlerEnv {
  pname = "compass";
  version = "1.0.3";

  inherit ruby;
  gemdir = ./.;

  passthru.updateScript = bundlerUpdateScript "compass";

  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 manveru nicknovitski ];
    mainProgram = "compass";
    platforms   = platforms.unix;
  };
}