github-changelog-generator: init at v1.14.3

Signed-off-by: Fritz Otlinghaus <fritz@otlinghaus.it>
This commit is contained in:
Fritz Otlinghaus
2018-12-14 15:54:22 +08:00
committed by Franz Pletz
parent aacb244889
commit 758f271fba
5 changed files with 225 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
{ stdenv, 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;
};
}