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 version = "1.0.3";
11
12 inherit ruby;
13 gemdir = ./.;
14
15 passthru.updateScript = bundlerUpdateScript "compass";
16
17 meta = {
18 description = "Stylesheet Authoring Environment that makes your website design simpler to implement and easier to maintain";
19 homepage = "https://github.com/Compass/compass";
20 license = with lib.licenses; mit;
21 maintainers = with lib.maintainers; [
22 offline
23 nicknovitski
24 ];
25 mainProgram = "compass";
26 platforms = lib.platforms.unix;
27 };
28}