lol
1{ stdenv, fetchFromGitHub, buildGoPackage }:
2
3buildGoPackage rec {
4 name = "kt-${version}";
5 version = "12.1.0";
6
7 src = fetchFromGitHub {
8 owner = "fgeller";
9 repo = "kt";
10 rev = "v${version}";
11 sha256 = "014q39bg88vg1xdq1bz6wj982zb148sip3a42hbrinh8qj41y4yg";
12 };
13
14 goPackagePath = "github.com/fgeller/kt";
15
16 meta = with stdenv.lib; {
17 description = "Kafka command line tool";
18 homepage = https://github.com/fgeller/kt;
19 maintainers = with maintainers; [ utdemir ];
20 platforms = with platforms; unix;
21 };
22}