kt: init at 11.1.0

This commit is contained in:
Utku Demir
2017-04-03 16:10:30 +12:00
parent f6ae3f62ee
commit db6a2918b9
3 changed files with 25 additions and 0 deletions
+22
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;
};
}