nixpkgs/pkgs/by-name/kc/kcat/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
736 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, pkg-config, zlib, rdkafka, yajl, avro-c, libserdes, which }:
2017-09-26 01:14:00 +00:00
stdenv.mkDerivation rec {
pname = "kcat";
2017-09-26 01:14:00 +00:00
2022-10-14 05:36:16 +00:00
version = "1.7.1";
2017-09-26 01:14:00 +00:00
src = fetchFromGitHub {
owner = "edenhill";
repo = "kcat";
2019-09-08 23:38:31 +00:00
rev = version;
2022-10-14 05:36:16 +00:00
sha256 = "sha256-pCIYNx0GYPGDYzTLq9h/LbOrJjhKWLAV4gq07Ikl5O4=";
2017-09-26 01:14:00 +00:00
};
nativeBuildInputs = [ pkg-config which ];
2017-09-26 01:14:00 +00:00
buildInputs = [ zlib rdkafka yajl avro-c libserdes ];
2017-09-26 01:14:00 +00:00
meta = with lib; {
2017-09-26 01:14:00 +00:00
description = "Generic non-JVM producer and consumer for Apache Kafka";
mainProgram = "kcat";
homepage = "https://github.com/edenhill/kcat";
2017-09-26 01:14:00 +00:00
license = licenses.bsd2;
platforms = platforms.linux ++ platforms.darwin;
maintainers = with maintainers; [ nyarly ];
};
}