depot/third_party/nixpkgs/pkgs/development/tools/compass/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

17 lines
531 B
Nix

{ lib, bundlerApp, bundlerUpdateScript }:
bundlerApp {
pname = "compass";
gemdir = ./.;
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;
};
}