3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/compass/default.nix

16 lines
437 B
Nix
Raw Normal View History

2019-04-30 15:09:30 +01:00
{ lib, bundlerApp }:
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" ];
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 15:09:30 +01:00
maintainers = with maintainers; [ offline manveru ];
platforms = platforms.unix;
};
}