mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-09 12:05:50 +03:00
Merge pull request #140829 from deshaw/kcat
This commit is contained in:
commit
dc37c7483e
3 changed files with 10 additions and 9 deletions
|
@ -1,18 +1,18 @@
|
||||||
{ lib, stdenv, fetchFromGitHub, pkg-config, zlib, rdkafka, yajl, avro-c, libserdes }:
|
{ lib, stdenv, fetchFromGitHub, pkg-config, zlib, rdkafka, yajl, avro-c, libserdes, which }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "kafkacat";
|
pname = "kcat";
|
||||||
|
|
||||||
version = "1.6.0";
|
version = "1.7.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "edenhill";
|
owner = "edenhill";
|
||||||
repo = "kafkacat";
|
repo = "kcat";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "0z3bw00s269myfd1xqksjyznmgp74xfs09xqlq347adsgby3cmfs";
|
sha256 = "sha256-koDhj/RQc9fhfqjrJylhURw6tppPELhLlBGbNVJsii8=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config ];
|
nativeBuildInputs = [ pkg-config which ];
|
||||||
|
|
||||||
buildInputs = [ zlib rdkafka yajl avro-c libserdes ];
|
buildInputs = [ zlib rdkafka yajl avro-c libserdes ];
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "A generic non-JVM producer and consumer for Apache Kafka";
|
description = "A generic non-JVM producer and consumer for Apache Kafka";
|
||||||
homepage = "https://github.com/edenhill/kafkacat";
|
homepage = "https://github.com/edenhill/kcat";
|
||||||
license = licenses.bsd2;
|
license = licenses.bsd2;
|
||||||
platforms = platforms.linux ++ platforms.darwin;
|
platforms = platforms.linux ++ platforms.darwin;
|
||||||
maintainers = with maintainers; [ nyarly ];
|
maintainers = with maintainers; [ nyarly ];
|
|
@ -378,6 +378,7 @@ mapAliases ({
|
||||||
joseki = apache-jena-fuseki; # added 2016-02-28
|
joseki = apache-jena-fuseki; # added 2016-02-28
|
||||||
jvmci8 = throw "graalvm8 and its tools were deprecated in favor of graalvm8-ce"; # added 2021-10-15
|
jvmci8 = throw "graalvm8 and its tools were deprecated in favor of graalvm8-ce"; # added 2021-10-15
|
||||||
json_glib = json-glib; # added 2018-02-25
|
json_glib = json-glib; # added 2018-02-25
|
||||||
|
kafkacat = kcat; # added 2021-10-07
|
||||||
kdecoration-viewer = throw "kdecoration-viewer has been removed from nixpkgs, as there is no upstream activity"; # 2020-06-16
|
kdecoration-viewer = throw "kdecoration-viewer has been removed from nixpkgs, as there is no upstream activity"; # 2020-06-16
|
||||||
k9copy = throw "k9copy has been removed from nixpkgs, as there is no upstream activity"; # 2020-11-06
|
k9copy = throw "k9copy has been removed from nixpkgs, as there is no upstream activity"; # 2020-11-06
|
||||||
kibana7-oss = throw "kibana7-oss has been removed, as the distribution is no longer provided by upstream. https://github.com/NixOS/nixpkgs/pull/114456"; # added 2021-06-09
|
kibana7-oss = throw "kibana7-oss has been removed, as the distribution is no longer provided by upstream. https://github.com/NixOS/nixpkgs/pull/114456"; # added 2021-06-09
|
||||||
|
|
|
@ -14715,10 +14715,10 @@ with pkgs;
|
||||||
|
|
||||||
k2tf = callPackage ../development/tools/misc/k2tf { };
|
k2tf = callPackage ../development/tools/misc/k2tf { };
|
||||||
|
|
||||||
kafkacat = callPackage ../development/tools/kafkacat { };
|
|
||||||
|
|
||||||
kati = callPackage ../development/tools/build-managers/kati { };
|
kati = callPackage ../development/tools/build-managers/kati { };
|
||||||
|
|
||||||
|
kcat = callPackage ../development/tools/kcat { };
|
||||||
|
|
||||||
kcc = libsForQt5.callPackage ../applications/graphics/kcc { };
|
kcc = libsForQt5.callPackage ../applications/graphics/kcc { };
|
||||||
|
|
||||||
kconfig-frontends = callPackage ../development/tools/misc/kconfig-frontends {
|
kconfig-frontends = callPackage ../development/tools/misc/kconfig-frontends {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue