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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
580 B
Nix
Raw Normal View History

2023-12-04 14:12:05 +00:00
{ lib, bundlerEnv, bundlerUpdateScript, ruby }:
2023-12-04 14:12:05 +00:00
bundlerEnv {
2019-04-30 14:09:30 +00:00
pname = "compass";
2023-12-04 14:12:05 +00:00
version = "1.0.3";
inherit ruby;
2017-01-17 23:27:07 +00:00
gemdir = ./.;
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 ];
2023-12-04 14:12:05 +00:00
mainProgram = "compass";
platforms = platforms.unix;
};
}