2019-07-22 05:02:47 -07:00
|
|
|
{ lib, bundlerApp, bundlerUpdateScript }:
|
2015-07-07 02:47:12 -07:00
|
|
|
|
2019-04-30 07:09:30 -07:00
|
|
|
bundlerApp {
|
|
|
|
pname = "compass";
|
2017-01-17 15:27:07 -08:00
|
|
|
gemdir = ./.;
|
2019-04-30 07:09:30 -07:00
|
|
|
exes = [ "compass" ];
|
2015-07-07 02:47:12 -07:00
|
|
|
|
2019-07-22 05:02:47 -07:00
|
|
|
passthru.updateScript = bundlerUpdateScript "compass";
|
|
|
|
|
2015-07-07 02:47:12 -07:00
|
|
|
meta = with lib; {
|
2016-02-27 09:24:00 -08:00
|
|
|
description = "Stylesheet Authoring Environment that makes your website design simpler to implement and easier to maintain";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/Compass/compass";
|
2015-07-07 02:47:12 -07:00
|
|
|
license = with licenses; mit;
|
2019-07-22 05:02:47 -07:00
|
|
|
maintainers = with maintainers; [ offline manveru nicknovitski ];
|
2015-07-07 02:47:12 -07:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|