b1bb10b7ae
Also switch from `bundlerEnv` to `bundlerApp`.
20 lines
464 B
Nix
20 lines
464 B
Nix
{ lib, bundlerApp, ruby }:
|
|
|
|
bundlerApp rec {
|
|
inherit ruby;
|
|
pname = "jazzy";
|
|
gemdir = ./.;
|
|
exes = [ "jazzy" ];
|
|
|
|
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
|
|
lilyball
|
|
];
|
|
};
|
|
}
|