Merge pull request #24585 from utdemir/master

kt: init at 11.1.0

authored by Jörg Thalheim and committed by GitHub a054f6c0 b6036c95

+25
+1
lib/maintainers.nix
··· 521 521 tvorog = "Marsel Zaripov <marszaripov@gmail.com>"; 522 522 twey = "James ‘Twey’ Kay <twey@twey.co.uk>"; 523 523 uralbash = "Svintsov Dmitry <root@uralbash.ru>"; 524 + utdemir = "Utku Demir <me@utdemir.com>"; 524 525 #urkud = "Yury G. Kudryashov <urkud+nix@ya.ru>"; inactive since 2012 525 526 uwap = "uwap <me@uwap.name>"; 526 527 vandenoever = "Jos van den Oever <jos@vandenoever.info>";
+22
pkgs/tools/misc/kt/default.nix
··· 1 + { stdenv, fetchFromGitHub, buildGoPackage }: 2 + 3 + buildGoPackage rec { 4 + name = "kt-${version}"; 5 + version = "11.1.0"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "fgeller"; 9 + repo = "kt"; 10 + rev = "v${version}"; 11 + sha256 = "1ymygd3l5pfbnjmdjcrspj520v29hnv3bdgxpim38dpv3qj518vq"; 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 + }
+2
pkgs/top-level/all-packages.nix
··· 6219 6219 apacheKafka_0_9 = callPackage ../servers/apache-kafka { majorVersion = "0.9"; }; 6220 6220 apacheKafka_0_10 = callPackage ../servers/apache-kafka { majorVersion = "0.10"; }; 6221 6221 6222 + kt = callPackage ../tools/misc/kt {}; 6223 + 6222 6224 asn2quickder = callPackage ../development/tools/asn2quickder {}; 6223 6225 6224 6226 astyle = callPackage ../development/tools/misc/astyle { };