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

16 lines
437 B
Nix
Raw Normal View History

2019-04-30 07:09:30 -07:00
{ lib, bundlerApp }:
2019-04-30 07:09:30 -07:00
bundlerApp {
pname = "compass";
2017-01-17 15:27:07 -08:00
gemdir = ./.;
2019-04-30 07:09:30 -07:00
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;
2019-04-30 07:09:30 -07:00
maintainers = with maintainers; [ offline manveru ];
platforms = platforms.unix;
};
}