nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 bundlerEnv,
4 bundlerUpdateScript,
5 ruby,
6}:
7
8bundlerEnv {
9 pname = "compass";
10
11 inherit ruby;
12 gemdir = ./.;
13
14 passthru.updateScript = bundlerUpdateScript "compass";
15
16 meta = {
17 description = "Stylesheet Authoring Environment that makes your website design simpler to implement and easier to maintain";
18 homepage = "https://github.com/Compass/compass";
19 license = with lib.licenses; mit;
20 maintainers = with lib.maintainers; [
21 nicknovitski
22 ];
23 mainProgram = "compass";
24 platforms = lib.platforms.unix;
25 };
26}