kafkactl: add changelog to meta
This commit is contained in:
parent
c3a06e83b0
commit
88e884b06f
1 changed files with 9 additions and 4 deletions
|
@ -1,4 +1,7 @@
|
|||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "kafkactl";
|
||||
|
@ -7,15 +10,17 @@ buildGoModule rec {
|
|||
src = fetchFromGitHub {
|
||||
owner = "deviceinsight";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-H6oSkPQx5bk9VBBoeGVg0Ri5LTCv96tR4Vq4guymAbQ=";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-H6oSkPQx5bk9VBBoeGVg0Ri5LTCv96tR4Vq4guymAbQ=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-Y3BPt3PsedrlCoKiKUObf6UQd+MuNiCGLpJUg94XSgA=";
|
||||
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
inherit (src.meta) homepage;
|
||||
homepage = "https://github.com/deviceinsight/kafkactl";
|
||||
changelog = "https://github.com/deviceinsight/kafkactl/blob/v${version}/CHANGELOG.md";
|
||||
description = "Command Line Tool for managing Apache Kafka";
|
||||
longDescription = ''
|
||||
A command-line interface for interaction with Apache Kafka.
|
||||
|
|
Loading…
Reference in a new issue