nixpkgs/pkgs/tools/misc/kt/default.nix

24 lines
557 B
Nix
Raw Normal View History

2017-04-03 03:54:04 +00:00
{ stdenv, fetchFromGitHub, buildGoPackage }:
buildGoPackage rec {
pname = "kt";
2017-10-16 22:57:38 +00:00
version = "12.1.0";
2017-04-03 03:54:04 +00:00
src = fetchFromGitHub {
owner = "fgeller";
repo = "kt";
rev = "v${version}";
2017-10-16 22:57:38 +00:00
sha256 = "014q39bg88vg1xdq1bz6wj982zb148sip3a42hbrinh8qj41y4yg";
2017-04-03 03:54:04 +00:00
};
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;
2018-09-11 21:40:43 +00:00
license = licenses.mit;
2017-04-03 03:54:04 +00:00
};
}