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