16 lines
437 B
Nix
16 lines
437 B
Nix
{ lib, bundlerApp }:
|
|
|
|
bundlerApp {
|
|
pname = "compass";
|
|
gemdir = ./.;
|
|
exes = [ "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 ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|