kt: init at 11.1.0
This commit is contained in:
parent
f6ae3f62ee
commit
db6a2918b9
@ -521,6 +521,7 @@
|
||||
tvorog = "Marsel Zaripov <marszaripov@gmail.com>";
|
||||
twey = "James ‘Twey’ Kay <twey@twey.co.uk>";
|
||||
uralbash = "Svintsov Dmitry <root@uralbash.ru>";
|
||||
utdemir = "Utku Demir <me@utdemir.com>";
|
||||
#urkud = "Yury G. Kudryashov <urkud+nix@ya.ru>"; inactive since 2012
|
||||
uwap = "uwap <me@uwap.name>";
|
||||
vandenoever = "Jos van den Oever <jos@vandenoever.info>";
|
||||
|
22
pkgs/tools/misc/kt/default.nix
Normal file
22
pkgs/tools/misc/kt/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ stdenv, fetchFromGitHub, buildGoPackage }:
|
||||
|
||||
buildGoPackage rec {
|
||||
name = "kt-${version}";
|
||||
version = "11.1.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "fgeller";
|
||||
repo = "kt";
|
||||
rev = "v${version}";
|
||||
sha256 = "1ymygd3l5pfbnjmdjcrspj520v29hnv3bdgxpim38dpv3qj518vq";
|
||||
};
|
||||
|
||||
goPackagePath = "github.com/fgeller/kt";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Kafka command line tool";
|
||||
homepage = https://github.com/fgeller/kt;
|
||||
maintainers = with maintainers; [ utdemir ];
|
||||
platforms = with platforms; unix;
|
||||
};
|
||||
}
|
@ -6219,6 +6219,8 @@ with pkgs;
|
||||
apacheKafka_0_9 = callPackage ../servers/apache-kafka { majorVersion = "0.9"; };
|
||||
apacheKafka_0_10 = callPackage ../servers/apache-kafka { majorVersion = "0.10"; };
|
||||
|
||||
kt = callPackage ../tools/misc/kt {};
|
||||
|
||||
asn2quickder = callPackage ../development/tools/asn2quickder {};
|
||||
|
||||
astyle = callPackage ../development/tools/misc/astyle { };
|
||||
|
Loading…
Reference in New Issue
Block a user