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

18 lines
427 B
Nix
Raw Normal View History

2017-11-01 06:46:01 +00:00
{ 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
];
};
}