2021-01-25 08:26:54 +00:00
|
|
|
{ lib, fetchFromGitHub, buildGoPackage }:
|
2017-04-03 04:54:04 +01:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "kt";
|
2017-10-16 23:57:38 +01:00
|
|
|
version = "12.1.0";
|
2017-04-03 04:54:04 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "fgeller";
|
|
|
|
repo = "kt";
|
|
|
|
rev = "v${version}";
|
2017-10-16 23:57:38 +01:00
|
|
|
sha256 = "014q39bg88vg1xdq1bz6wj982zb148sip3a42hbrinh8qj41y4yg";
|
2017-04-03 04:54:04 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
goPackagePath = "github.com/fgeller/kt";
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-04-03 04:54:04 +01:00
|
|
|
description = "Kafka command line tool";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/fgeller/kt";
|
2017-04-03 04:54:04 +01:00
|
|
|
maintainers = with maintainers; [ utdemir ];
|
|
|
|
platforms = with platforms; unix;
|
2018-09-11 22:40:43 +01:00
|
|
|
license = licenses.mit;
|
2017-04-03 04:54:04 +01:00
|
|
|
};
|
|
|
|
}
|