summary refs log tree commit diff
path: root/pkgs/development/tools/github-changelog-generator/default.nix
blob: 02de300138d2e9dff2c5dd3192d3ea8e7f1ffa6c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ lib, bundlerApp}:

bundlerApp rec {
  pname = "github_changelog_generator";
  gemdir = ./.;
  exes = [ "github_changelog_generator" ];

  meta = with lib; {
    description = "Fully automated changelog generation - This gem generates a changelog file based on tags, issues and merged pull requests";
    homepage    = https://github.com/github-changelog-generator/github-changelog-generator;
    license     = licenses.mit;
    maintainers = with maintainers; [ Scriptkiddi ];
    platforms   = platforms.unix;
  };
}