mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
17 lines
427 B
Nix
17 lines
427 B
Nix
{ lib, bundlerEnv, ruby }:
|
|
|
|
bundlerEnv rec {
|
|
inherit ruby;
|
|
pname = "jazzy";
|
|
gemdir = ./.;
|
|
|
|
meta = with lib; {
|
|
description = "A command-line utility that generates documentation for Swift or Objective-C";
|
|
homepage = https://github.com/realm/jazzy;
|
|
license = licenses.mit;
|
|
platforms = platforms.darwin;
|
|
maintainers = with maintainers; [
|
|
peterromfeldhk
|
|
];
|
|
};
|
|
}
|