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