nixpkgs/pkgs/development/tools/compass/default.nix

18 lines
531 B
Nix
Raw Normal View History

{ lib, bundlerApp, bundlerUpdateScript }:
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" ];
passthru.updateScript = bundlerUpdateScript "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 nicknovitski ];
platforms = platforms.unix;
};
}