Merge pull request #24585 from utdemir/master

kt: init at 11.1.0
This commit is contained in:
Jörg Thalheim 2017-04-03 09:33:46 +02:00 committed by GitHub
commit a054f6c076
3 changed files with 25 additions and 0 deletions

View file

@ -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>";

View 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;
};
}

View file

@ -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 { };