mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 07:05:13 +00:00
ff323ed355
via: `find pkgs/ -type f -exec sed -i 's/vendorSha256 = "sha256/vendorHash = "sha256/' {};`
28 lines
621 B
Nix
28 lines
621 B
Nix
{ lib, fetchFromGitHub, buildGoModule }:
|
|
|
|
buildGoModule rec {
|
|
pname = "kt";
|
|
version = "13.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "fgeller";
|
|
repo = "kt";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-1UGsiMMmAyIQZ62hNIi0uzyX2uNL03EWupIazjznqDc=";
|
|
};
|
|
|
|
vendorHash = "sha256-PeNpDro6G78KLN6B2CDhsTKamRTWQyxPJYWuuv6sUyw=";
|
|
|
|
ldflags = [ "-s" "-w" ];
|
|
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Kafka command line tool";
|
|
homepage = "https://github.com/fgeller/kt";
|
|
maintainers = with maintainers; [ utdemir ];
|
|
platforms = with platforms; unix;
|
|
license = licenses.mit;
|
|
};
|
|
}
|