compass: use bundlerApp, cleanup

This commit is contained in:
Michael Fellinger
2019-04-30 19:01:01 +02:00
parent 00fe2aaffe
commit f2558031ce
4 changed files with 82 additions and 67 deletions
+5 -6
View File
@@ -1,16 +1,15 @@
{ lib, bundlerEnv, ruby }:
{ lib, bundlerApp }:
bundlerEnv {
name = "compass-1.0.3";
inherit ruby;
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 ];
maintainers = with maintainers; [ offline manveru ];
platforms = platforms.unix;
};
}